From 46ae181c4628d9ac549df49849a6927618de54ac Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 6 Sep 2024 15:46:38 +0000 Subject: [PATCH 1/4] Update scala-compiler, scala-library to 2.12.20 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4a3ec7c..934f212 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ licenses := Seq( homepage := Some(url("http://github.com/lightbend/scala-sculpt")) scalaVersion := crossScalaVersions.value.head -crossScalaVersions := Seq("2.13.14", "2.12.19") +crossScalaVersions := Seq("2.13.14", "2.12.20") libraryDependencies ++= Seq( "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided", From 1900ca22d3b3f0e2e74dd11627eee6e2cf86c74c Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 18 Dec 2024 10:27:00 -0800 Subject: [PATCH 2/4] add JDK 17 and 21 to CI matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d2ca0e..ec1304e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - java: [8, 11] + java: [8, 11, 17, 21] scala: [2.13.x, 2.12.x] runs-on: ubuntu-latest steps: From 46a543c8bf262d81e53896e2513f335ed3fc3f33 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 18 Dec 2024 10:28:55 -0800 Subject: [PATCH 3/4] bump actions versions --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec1304e..0e7b989 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,12 +13,11 @@ jobs: scala: [2.13.x, 2.12.x] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: coursier/cache-action@v6 - - uses: actions/setup-java@v2 + - uses: actions/setup-java@v4 with: distribution: temurin java-version: ${{matrix.java}} - name: Test run: sbt ++${{matrix.scala}} test - From 42edba4498bff90066fe8aabd42dc170914e0353 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 18 Dec 2024 10:29:19 -0800 Subject: [PATCH 4/4] fix CI by adding setup-sbt ubuntu-latest no longer has sbt --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e7b989..0a5a94a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,6 @@ jobs: with: distribution: temurin java-version: ${{matrix.java}} + - uses: sbt/setup-sbt@v1 - name: Test run: sbt ++${{matrix.scala}} test