diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d88e1dc..a3edede 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - macos-11 - macos-12 - windows-2022 - scala: [2.13.10, 3.2.1] + scala: [2.13.10, 3.2.2] java: [temurin@8] project: [rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -189,22 +189,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1, rootJVM) + - name: Download target directories (3.2.2, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM - - name: Inflate target directories (3.2.1, rootJVM) + - name: Inflate target directories (3.2.2, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1, rootNative) + - name: Download target directories (3.2.2, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative - - name: Inflate target directories (3.2.1, rootNative) + - name: Inflate target directories (3.2.2, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 951d030..9ca7117 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ ThisBuild / developers := List( ThisBuild / tlSonatypeUseLegacyHost := false val Scala213 = "2.13.10" -ThisBuild / crossScalaVersions := Seq(Scala213, "3.2.1") +ThisBuild / crossScalaVersions := Seq(Scala213, "3.2.2") ThisBuild / scalaVersion := Scala213 ThisBuild / githubWorkflowOSes := Seq("ubuntu-20.04", "ubuntu-22.04", "macos-11", "macos-12", "windows-2022")