diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ca3b31..4dddfd7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 3.3.0] + scala: [2.13.14, 3.3.0] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -147,32 +147,32 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.11, rootJS) + - name: Download target directories (2.13.14, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJS - - name: Inflate target directories (2.13.11, rootJS) + - name: Inflate target directories (2.13.14, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootJVM) + - name: Download target directories (2.13.14, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJVM - - name: Inflate target directories (2.13.11, rootJVM) + - name: Inflate target directories (2.13.14, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootNative) + - name: Download target directories (2.13.14, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootNative - - name: Inflate target directories (2.13.11, rootNative) + - name: Inflate target directories (2.13.14, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 09879b1..1922b20 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ ThisBuild / tlSonatypeUseLegacyHost := true val Scala3 = "3.3.0" -ThisBuild / crossScalaVersions := Seq("2.13.11", Scala3) +ThisBuild / crossScalaVersions := Seq("2.13.14", Scala3) ThisBuild / scalaVersion := Scala3 ThisBuild / testFrameworks += new TestFramework("munit.Framework")