From 6d963e32446c754ab7ff3f0856ca0d6160f895f0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 26 Feb 2026 23:36:59 +0000 Subject: [PATCH 1/3] Update scala3-library to 3.8.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index cf45049..16f17c8 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "make-release-notes" -scalaVersion := "3.7.4" +scalaVersion := "3.8.2" scalacOptions ++= Seq("-feature", "-deprecation", "-Werror", "-source:future") libraryDependencies ++= Seq( From a14f24a598d17cd755851e2121756a3026274a58 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 11 Mar 2026 15:40:00 -0700 Subject: [PATCH 2/3] CI: use JDK 25, so we are free to use Scala 3.8+ --- .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 a939940..170a921 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-java@v2 with: distribution: temurin - java-version: 8 + java-version: 25 - uses: sbt/setup-sbt@v1 - name: Test run: | From 56c58fb7af948da0f01e858338a093b6395674be Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 11 Mar 2026 15:39:48 -0700 Subject: [PATCH 3/3] CI: bump some Actions versions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 170a921..63259e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,11 @@ jobs: fail-fast: false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: coursier/cache-action@v6 - - uses: actions/setup-java@v2 + - uses: coursier/cache-action@v8 + - uses: actions/setup-java@v5 with: distribution: temurin java-version: 25