diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dde8269..fb288bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,13 +28,13 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10, 3.2.2] + scala: [2.12.17, 2.13.10, 3.3.0] java: [temurin@11, temurin@17] project: [rootJVM] exclude: - scala: 2.12.17 java: temurin@17 - - scala: 3.2.2 + - scala: 3.3.0 java: temurin@17 runs-on: ${{ matrix.os }} steps: @@ -204,12 +204,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2, rootJVM) + - name: Download target directories (3.3.0, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJVM - - name: Inflate target directories (3.2.2, rootJVM) + - name: Inflate target directories (3.3.0, rootJVM) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index e4bc624..4d41b94 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ ThisBuild / developers := List( ) val scala212 = "2.12.17" val scala213 = "2.13.10" -val scala3 = "3.2.2" +val scala3 = "3.3.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3) ThisBuild / circeRootOfCodeCoverage := Some("root")