diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2073794..33b645c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.14, 2.13.6, 3.0.0] + scala: [2.12.14, 2.13.6, 3.0.1] java: [adopt@1.11] runs-on: ${{ matrix.os }} steps: @@ -116,12 +116,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.0) + - name: Download target directories (3.0.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.1-${{ matrix.java }} - - name: Inflate target directories (3.0.0) + - name: Inflate target directories (3.0.1) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 319a497..305bca9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ lazy val scala212 = "2.12.14" lazy val scala213 = "2.13.6" lazy val scalaJs = "0.6.31" -lazy val scala3 = "3.0.0" +lazy val scala3 = "3.0.1" lazy val supportedScalaVersions = List( scala212,