From 91a10cda46aac0db5986842b84a08262cc669094 Mon Sep 17 00:00:00 2001 From: Radoslav Husar Date: Mon, 30 Sep 2024 18:31:00 +0200 Subject: [PATCH] CI: JDK 23 is now GA. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac45155906..5547aa6deb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ 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, 22, 23-ea ] + # Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (optional). + java: [ 11, 17, 21, 23 ] steps: - name: Checkout uses: actions/checkout@v4