diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fde61f028..68006de80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.8, 3.1.2] + scala: [2.12.15, 2.13.8, 3.1.1] java: [adopt-hotspot@8] runs-on: ${{ matrix.os }} steps: @@ -59,7 +59,7 @@ jobs: run: sbt ++${{ matrix.scala }} validateJVM validateJS - name: Build project (Scala 3) - if: matrix.scala == '3.1.2' + if: matrix.scala == '3.1.1' run: sbt ++${{ matrix.scala }} validateJVM30 validateJS30 - name: Codecov @@ -129,12 +129,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.2) + - name: Download target directories (3.1.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.1.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.1-${{ matrix.java }} - - name: Inflate target directories (3.1.2) + - name: Inflate target directories (3.1.1) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index b1d066bb4..1da478c2f 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git" val Scala_2_12 = "2.12.15" val Scala_2_13 = "2.13.8" -val Scala_3 = "3.1.2" +val Scala_3 = "3.1.1" val catsVersion = "2.7.0" val jsonpathVersion = "2.7.0"