diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 332154fb..46ec421b 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.20, 2.13.15, 3.3.4] + scala: [2.11.12, 2.12.20, 2.13.15, 3.6.2] java: [zulu@8, zulu@11, zulu@17, zulu@21] runs-on: ${{ matrix.os }} steps: @@ -156,12 +156,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.4) + - name: Download target directories (3.6.2) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }} + name: target-${{ matrix.os }}-3.6.2-${{ matrix.java }} - - name: Inflate target directories (3.3.4) + - name: Inflate target directories (3.6.2) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 4729af70..dbcd3840 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ organization := "com.fasterxml.jackson.module" val scala213Version = "2.13.15" ThisBuild / scalaVersion := scala213Version -ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", scala213Version, "3.3.4") +ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.20", scala213Version, "3.6.2") resolvers ++= Resolver.sonatypeOssRepos("snapshots")