From fcadbeb41dfde565f59ff899e3aab1220bd933db Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Thu, 3 Oct 2024 01:13:15 +0100 Subject: [PATCH 1/2] scala 2.13.15 --- .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 dba96d44..40c53918 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.20, 2.13.14, 3.3.3] + SCALA_VERSION: [2.12.20, 2.13.15, 3.3.3] JAVA_VERSION: [8, 11, 17, 21] steps: - name: Checkout diff --git a/.github/workflows/publish-nightly.yml b/.github/workflows/publish-nightly.yml index 3216ec22..911be629 100644 --- a/.github/workflows/publish-nightly.yml +++ b/.github/workflows/publish-nightly.yml @@ -27,7 +27,7 @@ jobs: run: |- cp .jvmopts-ci .jvmopts sbt +publish - sbt ++2.13.14! codegen/publish + sbt ++2.13.15! codegen/publish sbt ++3.3.3! codegen/publish env: NEXUS_USER: ${{ secrets.NEXUS_USER }} diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d8db70ac..b9d6513e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -17,7 +17,7 @@ object Dependencies { object Versions { // Update the .github workflows when these scala versions change val scala212 = "2.12.20" - val scala213 = "2.13.14" + val scala213 = "2.13.15" val scala3 = "3.3.3" // the order in the list is important because the head will be considered the default. From 6dff596c081203dbcafbab2d174d61fe1427f214 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Thu, 3 Oct 2024 10:27:08 +0100 Subject: [PATCH 2/2] scala 3.3.4 --- .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 40c53918..c1ab2655 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.20, 2.13.15, 3.3.3] + SCALA_VERSION: [2.12.20, 2.13.15, 3.3.4] JAVA_VERSION: [8, 11, 17, 21] steps: - name: Checkout diff --git a/.github/workflows/publish-nightly.yml b/.github/workflows/publish-nightly.yml index 911be629..bcee2c98 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.15! codegen/publish - sbt ++3.3.3! codegen/publish + sbt ++3.3.4! codegen/publish env: NEXUS_USER: ${{ secrets.NEXUS_USER }} NEXUS_PW: ${{ secrets.NEXUS_PW }} diff --git a/project/Dependencies.scala b/project/Dependencies.scala index b9d6513e..8b8bea1a 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.20" val scala213 = "2.13.15" - val scala3 = "3.3.3" + val scala3 = "3.3.4" // the order in the list is important because the head will be considered the default. val CrossScalaForLib = Seq(scala212, scala213, scala3)