diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 869272e..6cbd77c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 3.3.1-RC2 - 3.3.1-RC1 - 3.3.0 - 3.2.2 @@ -80,7 +81,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.1-RC1] + scala: [3.3.1-RC2] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -108,6 +109,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (3.3.1-RC2) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.3.1-RC2-${{ matrix.java }} + + - name: Inflate target directories (3.3.1-RC2) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.3.1-RC1) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index b83d82a..ad4d80a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, - crossScalaVersions := Seq("3.3.1-RC1", "3.3.0", "3.2.2", "3.2.1", "2.13.10", "2.13.11", "2.12.17"), + crossScalaVersions := Seq("3.3.1-RC2", "3.3.1-RC1", "3.3.0", "3.2.2", "3.2.1", "2.13.10", "2.13.11", "2.12.17"), githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),