diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2de3b14..3aa964f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.2, 2.13.10, 2.12.17] + scala: [3.3.0, 2.13.10, 2.12.17] java: [temurin@8, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -119,12 +119,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.2.2) + - name: Download target directories (3.3.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.2.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} - - name: Inflate target directories (3.2.2) + - name: Inflate target directories (3.3.0) run: | tar xf targets.tar rm targets.tar diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 051aa1d..dbf0e7d 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -10,7 +10,7 @@ object Dependencies { val scala213 = "2.13.10" - val scala3 = "3.2.2" + val scala3 = "3.3.0" val cats = "2.8.0"