diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c9e177..d916e76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13, 3.3.3] + scala: [2.13.14, 3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -72,7 +72,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13] + scala: [2.13.14] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -100,12 +100,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.13) + - name: Download target directories (2.13.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} - - name: Inflate target directories (2.13.13) + - name: Inflate target directories (2.13.14) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 969ac94..b1e5df8 100644 --- a/build.sbt +++ b/build.sbt @@ -279,7 +279,7 @@ lazy val commonSettings = Def.settings( ) lazy val V = new { - val scala213 = "2.13.13" + val scala213 = "2.13.14" val scala3 = "3.3.3" val scalaAll = scala213 :: scala3 :: Nil