diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1691618..945af37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-22.04] - scala: [3, 2.13, 2.12] + scala: [3.3.8, 3.9.0, 2.12.21] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -127,92 +127,92 @@ jobs: if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' run: sbt +update - - name: Download target directories (3, rootJS) + - name: Download target directories (3.3.8, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.8-rootJS - - name: Inflate target directories (3, rootJS) + - name: Inflate target directories (3.3.8, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3, rootJVM) + - name: Download target directories (3.3.8, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.8-rootJVM - - name: Inflate target directories (3, rootJVM) + - name: Inflate target directories (3.3.8, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3, rootNative) + - name: Download target directories (3.3.8, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.8-rootNative - - name: Inflate target directories (3, rootNative) + - name: Inflate target directories (3.3.8, rootNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootJS) + - name: Download target directories (3.9.0, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.9.0-rootJS - - name: Inflate target directories (2.13, rootJS) + - name: Inflate target directories (3.9.0, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootJVM) + - name: Download target directories (3.9.0, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.9.0-rootJVM - - name: Inflate target directories (2.13, rootJVM) + - name: Inflate target directories (3.9.0, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootNative) + - name: Download target directories (3.9.0, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.9.0-rootNative - - name: Inflate target directories (2.13, rootNative) + - name: Inflate target directories (3.9.0, rootNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootJS) + - name: Download target directories (2.12.21, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJS - - name: Inflate target directories (2.12, rootJS) + - name: Inflate target directories (2.12.21, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootJVM) + - name: Download target directories (2.12.21, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJVM - - name: Inflate target directories (2.12, rootJVM) + - name: Inflate target directories (2.12.21, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootNative) + - name: Download target directories (2.12.21, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootNative - - name: Inflate target directories (2.12, rootNative) + - name: Inflate target directories (2.12.21, rootNative) run: | tar xf targets.tar rm targets.tar @@ -274,5 +274,5 @@ jobs: - name: Submit Dependencies uses: scalacenter/sbt-dependency-submission@v2 with: - modules-ignore: jawn-root_3 jawn-root_2.13 jawn-root_2.12 jawn-root_3 jawn-root_2.13 jawn-root_2.12 jawn-root_3 jawn-root_2.13 jawn-root_2.12 jawn-benchmarks_3 jawn-benchmarks_2.13 jawn-benchmarks_2.12 + modules-ignore: jawn-root_3 jawn-root_3 jawn-root_2.12 jawn-root_3 jawn-root_3 jawn-root_2.12 jawn-root_3 jawn-root_3 jawn-root_2.12 jawn-benchmarks_3 jawn-benchmarks_3 jawn-benchmarks_2.12 configs-ignore: test scala-tool scala-doc-tool test-internal diff --git a/build.sbt b/build.sbt index a5daf33..bc790c8 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ ThisBuild / tlBaseVersion := "1.7" lazy val scala212 = "2.12.21" -lazy val scala213 = "2.13.18" +lazy val scala213 = "3.9.0" lazy val scala3 = "3.3.8" ThisBuild / crossScalaVersions := Seq(scala3, scala213, scala212) ThisBuild / tlVersionIntroduced := Map("3" -> "1.1.2")