diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 064fe1a2..afdbfb06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.20, 2.13.16, 3.3.5] + scala: [2.12.20, 2.13.16, 3.3.6] java: [zulu@11] runs-on: ${{ matrix.os }} steps: @@ -108,12 +108,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.5) + - name: Download target directories (3.3.6) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.6-${{ matrix.java }} - - name: Inflate target directories (3.3.5) + - name: Inflate target directories (3.3.6) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index a87d3056..3c1206e4 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ def crossPlugin(x: sbt.librarymanagement.ModuleID) = compilerPlugin(x.cross(Cros val Scala212 = "2.12.20" val Scala213 = "2.13.16" -val Scala3 = "3.3.5" +val Scala3 = "3.3.6" ThisBuild / scalaVersion := Scala213 ThisBuild / crossScalaVersions := Seq(Scala212, Scala213, Scala3)