From e84cf2f0deb4c1a15a0d47c418d4f3c13fb2c0d2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 02:42:58 +0000 Subject: [PATCH 1/3] Initial plan From 570355440fb5664ffc99271d44e3ac39d851f8d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 02:46:16 +0000 Subject: [PATCH 2/3] Use JDK 17 for CI sbt compatibility --- .github/workflows/ci.yml | 8 ++++---- build.sbt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f62e92..d328267 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.18] - java: [temurin@11] + java: [temurin@17] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -31,12 +31,12 @@ jobs: with: fetch-depth: 0 - - name: Setup Java (temurin@11) - if: matrix.java == 'temurin@11' + - name: Setup Java (temurin@17) + if: matrix.java == 'temurin@17' uses: actions/setup-java@v4 with: distribution: temurin - java-version: 11 + java-version: 17 cache: sbt - name: Setup sbt diff --git a/build.sbt b/build.sbt index b1864f7..a5d8e02 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ inThisBuild( scalacOptions += "-Xsource:3", githubWorkflowPublishTargetBranches := Seq(), githubWorkflowBuild += WorkflowStep.Sbt(List("run")), - githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")) + githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")) ) ) From c643ce33dffd5e7d75585d910afe430d13e3b583 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Jul 2026 03:43:38 +0000 Subject: [PATCH 3/3] Update Mergify required check to Java 17 matrix name --- .mergify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mergify.yml b/.mergify.yml index 34d578b..c179d29 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=slick-scala-steward[bot] - author=renovate[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.18, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.18, temurin@17) actions: queue: name: default