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