diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61a1e7f7..578290d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - scala: [2.12.18, 2.13.11, 3.2.2] + scala: [2.12.18, 2.13.12, 3.2.2] java: [temurin@8, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -84,7 +84,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11] + scala: [2.13.12] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -129,12 +129,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11) + - name: Download target directories (2.13.12) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.11-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} - - name: Inflate target directories (2.13.11) + - name: Inflate target directories (2.13.12) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index ddcf70dc..37af4079 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ ThisBuild / versionScheme := Some("always") Global / onChangedBuildSource := ReloadOnSourceChanges -lazy val scalaVersion213 = "2.13.11" +lazy val scalaVersion213 = "2.13.12" lazy val scalaVersion3 = "3.2.2" ThisBuild / scalaVersion := scalaVersion213 ThisBuild / crossScalaVersions := Seq("2.12.18", scalaVersion213, scalaVersion3)