From c66eea2404dbc5140e2a36d107b3adb4a6920a7c Mon Sep 17 00:00:00 2001 From: croway Date: Wed, 2 Sep 2026 15:54:24 +0200 Subject: [PATCH] Drop JDK 21 from the PR build matrix The PR build runs the full incremental build once per JDK, so every PR enqueues three jobs. JDK 17 is the minimum supported version and JDK 25 is the latest LTS, and these two bound what JDK 21 would catch. Testing on 17 and 25 only cuts the PR queue by a third. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/pr-build-main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-build-main.yml b/.github/workflows/pr-build-main.yml index 13ab3044f82..1b2deaf9e11 100644 --- a/.github/workflows/pr-build-main.yml +++ b/.github/workflows/pr-build-main.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: ['17', '21', '25'] + java: ['17', '25'] steps: - uses: actions/checkout@v7 with: