diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd01e3c..07a619f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.8, 3.2.2] + scala: [2.12.15, 2.13.12, 3.2.2] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -177,32 +177,32 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootJS) + - name: Download target directories (2.13.12, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootJS - - name: Inflate target directories (2.13.8, rootJS) + - name: Inflate target directories (2.13.12, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootJVM) + - name: Download target directories (2.13.12, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootJVM - - name: Inflate target directories (2.13.8, rootJVM) + - name: Inflate target directories (2.13.12, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootNative) + - name: Download target directories (2.13.12, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootNative - - name: Inflate target directories (2.13.8, rootNative) + - name: Inflate target directories (2.13.12, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 561c396..722a73e 100644 --- a/build.sbt +++ b/build.sbt @@ -19,7 +19,7 @@ val catsEffectV = "3.4.9" val munitCatsEffectV = "2.0.0-M3" -ThisBuild / crossScalaVersions := Seq("2.12.15","2.13.8", "3.2.2") +ThisBuild / crossScalaVersions := Seq("2.12.15","2.13.12", "3.2.2") ThisBuild / scalaVersion := "3.2.2" ThisBuild / versionScheme := Some("early-semver")