diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1b59c62f..26f412b57 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.1] + scala: [2.12.19, 2.13.10, 3.2.1] java: [temurin@11] project: [rootJS, rootJVM, rootNative] include: @@ -162,32 +162,32 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.17, rootJS) + - name: Download target directories (2.12.19, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19-rootJS - - name: Inflate target directories (2.12.17, rootJS) + - name: Inflate target directories (2.12.19, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.17, rootJVM) + - name: Download target directories (2.12.19, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19-rootJVM - - name: Inflate target directories (2.12.17, rootJVM) + - name: Inflate target directories (2.12.19, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.17, rootNative) + - name: Download target directories (2.12.19, rootNative) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19-rootNative - - name: Inflate target directories (2.12.17, rootNative) + - name: Inflate target directories (2.12.19, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 74fe2a9b7..a7c8772da 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ val scala213 = "2.13.10" val scala3 = "3.2.1" ThisBuild / scalaVersion := scala213 -ThisBuild / crossScalaVersions := Seq("2.12.17", scala213, scala3) +ThisBuild / crossScalaVersions := Seq("2.12.19", scala213, scala3) ThisBuild / tlBaseVersion := "2.5"