From c776a3aba05d5f3673186416e603328ed048a9d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Wed, 19 Nov 2025 15:41:47 +0100 Subject: [PATCH] Fix early access of Java CI workflow configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JDK 20 and 21 are no more available as early access builds. Based on https://jdk.java.net/. So removing JDK 20 and 21. Using only JDK 26. This could be discussed and added to the matrix if needed if wanted to test some of the other early access builds (such as Leyden, Loom or Valhalla) Signed-off-by: Aurélien Pupier --- .github/workflows/jdk-early-access-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jdk-early-access-build.yml b/.github/workflows/jdk-early-access-build.yml index 8c593fd9588e1..354eb41b8b669 100644 --- a/.github/workflows/jdk-early-access-build.yml +++ b/.github/workflows/jdk-early-access-build.yml @@ -43,7 +43,7 @@ jobs: github.event_name == 'workflow_dispatch' && format( '{{ "include": [{{ "version": "{0}", "dist": "{1}" }}] }}', github.event.inputs.jdkVersion, github.event.inputs.jdkDistribution ) - || '{ "include": [{ "version": 20, "dist": "jdk.java.net" }, { "version": 21, "dist": "jdk.java.net" }] }' + || '{ "include": [{ "version": 26, "dist": "jdk.java.net" }] }' ) }} if: github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'