diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce567859..153c53b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10, 3.2.1] + scala: [2.12.17, 2.13.10, 3.2.2] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -148,12 +148,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1) + - name: Download target directories (3.2.2) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1 + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2 - - name: Inflate target directories (3.2.1) + - name: Inflate target directories (3.2.2) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 6dba3654..22253148 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -19,7 +19,7 @@ pull_request_rules: - author=scala-steward - status-success=Build and Test (ubuntu-latest, 2.12.17, temurin@8) - status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@8) - - status-success=Build and Test (ubuntu-latest, 3.2.1, temurin@8) + - status-success=Build and Test (ubuntu-latest, 3.2.2, temurin@8) actions: merge: method: squash diff --git a/build.sbt b/build.sbt index 0581610c..f701183c 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ val gitHubOwner = "fthomas" val Scala_2_12 = "2.12.17" val Scala_2_13 = "2.13.10" -val Scala_3 = "3.2.1" +val Scala_3 = "3.2.2" val moduleCrossPlatformMatrix: Map[String, List[Platform]] = Map( "core" -> List(JVMPlatform),