From a12da1e867ea67dbf9e677fe0e43c5ac61485c01 Mon Sep 17 00:00:00 2001 From: Radoslav Husar Date: Tue, 8 Oct 2024 09:02:27 +0200 Subject: [PATCH] CI: JDK 23 is now GA. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bc6757..a5e10e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,9 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - # Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if available). - java: [ 11, 17, 21 ] + # Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available). + # https://www.oracle.com/java/technologies/java-se-support-roadmap.html + java: [ 11, 17, 21, 23 ] steps: - name: Checkout uses: actions/checkout@v4