diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d6dd599..06394765 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.21, 2.13.18, 3.3.7] + scala: [2.12.21, 2.13.18, 3.3.8] java: [zulu@21] runs-on: ${{ matrix.os }} steps: @@ -107,12 +107,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.7) + - name: Download target directories (3.3.8) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-3.3.7-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.8-${{ matrix.java }} - - name: Inflate target directories (3.3.7) + - name: Inflate target directories (3.3.8) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index ce51211f..f4fecaa9 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ def crossPlugin(x: sbt.librarymanagement.ModuleID) = compilerPlugin(x.cross(Cros val Scala212 = "2.12.21" val Scala213 = "2.13.18" -val Scala3 = "3.3.7" +val Scala3 = "3.3.8" ThisBuild / scalaVersion := Scala213 ThisBuild / crossScalaVersions := Seq(Scala212, Scala213, Scala3)