From 2bd9d2b0e62bbbd1edd75583a79d9fa666cb5c07 Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Thu, 21 Dec 2023 15:22:25 +1100 Subject: [PATCH] Update Scala 3 to 3.3.2 --- .github/workflows/build-test.yml | 2 +- .github/workflows/publish-nightly.yml | 2 +- project/Dependencies.scala | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 7e5abe35..5136f274 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -65,7 +65,7 @@ jobs: strategy: fail-fast: false matrix: - SCALA_VERSION: [2.12.18, 2.13.11, 3.3.1] + SCALA_VERSION: [2.12.18, 2.13.11, 3.3.2-RC1] JAVA_VERSION: [8, 11] steps: - name: Checkout diff --git a/.github/workflows/publish-nightly.yml b/.github/workflows/publish-nightly.yml index f2bc3ae1..0cc20336 100644 --- a/.github/workflows/publish-nightly.yml +++ b/.github/workflows/publish-nightly.yml @@ -28,7 +28,7 @@ jobs: cp .jvmopts-ci .jvmopts sbt +publish sbt ++2.13.11! codegen/publish - sbt ++3.3.1! codegen/publish + sbt ++3.3.2-RC1! codegen/publish env: NEXUS_USER: ${{ secrets.NEXUS_USER }} NEXUS_PW: ${{ secrets.NEXUS_PW }} diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 103b6cae..47966970 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -18,7 +18,7 @@ object Dependencies { // Update the .github workflows when these scala versions change val scala212 = "2.12.18" val scala213 = "2.13.11" - val scala3 = "3.3.1" + val scala3 = "3.3.2-RC1" // the order in the list is important because the head will be considered the default. val CrossScalaForLib = Seq(scala212, scala213, scala3)