diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6836bb7..54c9bcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.14, 3.0.2] + scala: [2.13.14, 3.4.1] java: [graalvm-ce-java11@20.3.0] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.2) + - name: Download target directories (3.4.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.4.1-${{ matrix.java }} - - name: Inflate target directories (3.0.2) + - name: Inflate target directories (3.4.1) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 84d92a5..f53cb92 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ inThisBuild( ) val Scala213 = "2.13.14" -val Scala3 = "3.0.2" +val Scala3 = "3.4.1" def crossPlugin(x: sbt.librarymanagement.ModuleID) = compilerPlugin(x.cross(CrossVersion.full))