diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 106b2dd..45d6560 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.2.0] + scala: [2.12.17, 2.13.10, 3.2.2] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -214,32 +214,32 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.0, rootJS) + - name: Download target directories (3.2.2, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS - - name: Inflate target directories (3.2.0, rootJS) + - name: Inflate target directories (3.2.2, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.0, rootJVM) + - name: Download target directories (3.2.2, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM - - name: Inflate target directories (3.2.0, rootJVM) + - name: Inflate target directories (3.2.2, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.0, rootNative) + - name: Download target directories (3.2.2, rootNative) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative - - name: Inflate target directories (3.2.0, 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 5355bd4..ee52a3b 100644 --- a/build.sbt +++ b/build.sbt @@ -15,7 +15,7 @@ val compilerPlugins = List( val Scala213 = "2.13.10" ThisBuild / scalaVersion := Scala213 -ThisBuild / crossScalaVersions := Seq("2.12.17", Scala213, "3.2.0") +ThisBuild / crossScalaVersions := Seq("2.12.17", Scala213, "3.2.2") Global / onChangedBuildSource := ReloadOnSourceChanges