diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99de6a4..a2f6038 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 3.0.2] + scala: [2.13.11, 3.0.2] java: [graalvm-ce-java11@20.3.0] runs-on: ${{ matrix.os }} steps: @@ -75,7 +75,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10] + scala: [2.13.11] java: [graalvm-ce-java11@20.3.0] runs-on: ${{ matrix.os }} steps: @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.10) + - name: Download target directories (2.13.11) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.10-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.11-${{ matrix.java }} - - name: Inflate target directories (2.13.10) + - name: Inflate target directories (2.13.11) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 3982aa5..577fab1 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ inThisBuild( ) ) -val Scala213 = "2.13.10" +val Scala213 = "2.13.11" val Scala3 = "3.0.2" def crossPlugin(x: sbt.librarymanagement.ModuleID) = compilerPlugin(x.cross(CrossVersion.full))