diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8839aa..743002c 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.13, 2.13.14] java: [adopt@1.11, adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.5) + - name: Download target directories (2.13.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} - - name: Inflate target directories (2.13.5) + - name: Inflate target directories (2.13.14) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 2398a5f..7fe7be8 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import com.typesafe.tools.mima.core._ val scala212 = "2.12.13" -val scala213 = "2.13.5" +val scala213 = "2.13.14" val supportedScalaVersions = List(scala212, scala213) val logbackVersion = "1.2.3"