diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0b4a4d..638e4a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 2.12.18, 3.3.0] + scala: [2.13.11, 2.12.18, 3.3.4] java: [temurin@8, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -138,12 +138,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.0) + - name: Download target directories (3.3.4) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }} - - name: Inflate target directories (3.3.0) + - name: Inflate target directories (3.3.4) run: | tar xf targets.tar rm targets.tar diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1c588d3..92fa02a 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -4,7 +4,7 @@ object Dependencies { object Versions { val scala212 = "2.12.18" val scala213 = "2.13.11" - val scala3 = "3.3.0" + val scala3 = "3.3.4" val trace4cats = "0.14.3"