diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8839aa..5b97c7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.5] + scala: [2.12.19, 2.13.5] java: [adopt@1.11, adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -56,7 +56,7 @@ jobs: run: sbt ++${{ matrix.scala }} check - name: Build and test sbt plugin - if: matrix.scala == '2.12.13' + if: matrix.scala == '2.12.19' run: sbt ++${{ matrix.scala }} scripted - name: Compress target directories @@ -75,7 +75,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13] + scala: [2.12.19] java: [adopt@1.11] runs-on: ${{ matrix.os }} steps: @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.13) + - name: Download target directories (2.12.19) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }} - - name: Inflate target directories (2.12.13) + - name: Inflate target directories (2.12.19) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 2398a5f..c7ffcd4 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ import com.typesafe.tools.mima.core._ -val scala212 = "2.12.13" +val scala212 = "2.12.19" val scala213 = "2.13.5" val supportedScalaVersions = List(scala212, scala213)