From c797897362974e67e553c02bba6af69bb08d6371 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:30:57 +0000 Subject: [PATCH 1/4] Update scala-library to 2.13.11 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- .../src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 674bd6c7..043119e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 3.3.0, 2.13.10] + scala: [2.12.17, 3.3.0, 2.13.11] java: [corretto@8, corretto@11] project: [rootJS, rootJVM] exclude: diff --git a/build.sbt b/build.sbt index 05d017cd..fbb16226 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ ThisBuild / githubWorkflowBuildPreamble += ) val Scala212 = "2.12.17" -val Scala213 = "2.13.10" +val Scala213 = "2.13.11" val Scala3 = "3.3.0" ThisBuild / crossScalaVersions := Seq(Scala212, Scala3, Scala213) diff --git a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt index 35d087b2..08e65176 100644 --- a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt +++ b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt @@ -1,2 +1,2 @@ -scalaVersion := "2.13.10" +scalaVersion := "2.13.11" enablePlugins(LambdaJSPlugin) From 5121e8d5d76f47ff63c862c817acc987cd4c8097 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:31:18 +0000 Subject: [PATCH 2/4] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 043119e3..701475ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -228,22 +228,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.10, rootJS) + - name: Download target directories (2.13.11, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJS - - name: Inflate target directories (2.13.10, rootJS) + - name: Inflate target directories (2.13.11, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.10, rootJVM) + - name: Download target directories (2.13.11, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM - - name: Inflate target directories (2.13.10, rootJVM) + - name: Inflate target directories (2.13.11, rootJVM) run: | tar xf targets.tar rm targets.tar From 5207362b2e4d0d618731b049123c9da757715c46 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 08:07:59 +0000 Subject: [PATCH 3/4] Revert commit(s) 5121e8d, c797897 --- .github/workflows/ci.yml | 14 +++++++------- build.sbt | 2 +- .../lambda-js-plugin/iolambda-simple/build.sbt | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 701475ca..674bd6c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 3.3.0, 2.13.11] + scala: [2.12.17, 3.3.0, 2.13.10] java: [corretto@8, corretto@11] project: [rootJS, rootJVM] exclude: @@ -228,22 +228,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootJS) + - name: Download target directories (2.13.10, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJS - - name: Inflate target directories (2.13.11, rootJS) + - name: Inflate target directories (2.13.10, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootJVM) + - name: Download target directories (2.13.10, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM - - name: Inflate target directories (2.13.11, rootJVM) + - name: Inflate target directories (2.13.10, rootJVM) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index fbb16226..05d017cd 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ ThisBuild / githubWorkflowBuildPreamble += ) val Scala212 = "2.12.17" -val Scala213 = "2.13.11" +val Scala213 = "2.13.10" val Scala3 = "3.3.0" ThisBuild / crossScalaVersions := Seq(Scala212, Scala3, Scala213) diff --git a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt index 08e65176..35d087b2 100644 --- a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt +++ b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt @@ -1,2 +1,2 @@ -scalaVersion := "2.13.11" +scalaVersion := "2.13.10" enablePlugins(LambdaJSPlugin) From 5a1fff1e678ae09febe29aab8195761e0d71a2ac Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 08:08:02 +0000 Subject: [PATCH 4/4] Update scala-library to 2.13.11 --- build.sbt | 2 +- .../src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 7acb5454..b84cf17c 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ ThisBuild / githubWorkflowBuildPreamble += ) val Scala212 = "2.12.17" -val Scala213 = "2.13.10" +val Scala213 = "2.13.11" val Scala3 = "3.3.0" ThisBuild / crossScalaVersions := Seq(Scala212, Scala3, Scala213) diff --git a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt index 35d087b2..08e65176 100644 --- a/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt +++ b/sbt-lambda/src/sbt-test/lambda-js-plugin/iolambda-simple/build.sbt @@ -1,2 +1,2 @@ -scalaVersion := "2.13.10" +scalaVersion := "2.13.11" enablePlugins(LambdaJSPlugin)