diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52b12e8..addd4fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10, 3.3.0] + scala: [2.12.17, 2.13.11, 3.3.0] java: [temurin@11, temurin@17] project: [rootJVM] exclude: @@ -193,12 +193,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.10, rootJVM) + - name: Download target directories (2.13.11, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM - - name: Inflate target directories (2.13.10, rootJVM) + - name: Inflate target directories (2.13.11, rootJVM) run: | tar xf targets.tar rm targets.tar @@ -232,7 +232,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10] + scala: [2.12.17, 2.13.11] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 4d41b94..e39bb71 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ ThisBuild / developers := List( Developer("jonas", "Jonas Fonseca", "jonas.fonseca@gmail.com", url("https://github.com/jonas")) ) val scala212 = "2.12.17" -val scala213 = "2.13.10" +val scala213 = "2.13.11" val scala3 = "3.3.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3)