diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9ee968b..68099750 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,13 +29,13 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - scala: [2.12.18, 2.13.12, 3.3.0] + scala: [2.12.18, 2.13.12, 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: @@ -204,12 +204,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 2148804c..ed9adc8b 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ val Versions = new { val scala212 = "2.12.18" val scala213 = "2.13.12" - val scala3 = "3.3.0" + val scala3 = "3.3.1" val scalaVersions = Seq(scala212, scala213, scala3) }