diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4a141bd..5f18f7a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.11.12, 2.12.18, 2.13.12, 3.3.1] + scala: [2.11.12, 2.12.19, 2.13.13, 3.3.3] java: [zulu@8, zulu@11, zulu@17, zulu@21] runs-on: ${{ matrix.os }} steps: @@ -86,7 +86,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12] + scala: [2.13.13] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -137,32 +137,32 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.18) + - name: Download target directories (2.12.19) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }} - - name: Inflate target directories (2.12.18) + - name: Inflate target directories (2.12.19) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.13) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.13) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.1) + - name: Download target directories (3.3.3) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} - - name: Inflate target directories (3.3.1) + - name: Inflate target directories (3.3.3) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index b04054a8..5321b72f 100644 --- a/build.sbt +++ b/build.sbt @@ -7,9 +7,10 @@ organization := "tools.jackson.module" ThisBuild / version := "3.0.0-SNAPSHOT" -ThisBuild / scalaVersion := "2.13.12" +val scala213Version = "2.13.13" +ThisBuild / scalaVersion := scala213Version -ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.12", "3.3.1") +ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3") sonatypeCredentialHost := "s01.oss.sonatype.org" sonatypeRepository := "s01.oss.sonatype.org"