From 1806c77189df51fe2ddb730685ae7deda1abe53c Mon Sep 17 00:00:00 2001 From: lprimak Date: Thu, 8 May 2025 15:06:18 -0500 Subject: [PATCH] chore(ci): update CI JDK 23 to 24 --- .github/workflows/maven.yml | 6 +++--- .jenkins.groovy | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 62c71dacb0..99f8ee8caa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -55,7 +55,7 @@ jobs: strategy: matrix: os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ] - jdk: [ 11, 17, 21, 23 ] + jdk: [ 11, 17, 21, 24 ] dist: [ 'temurin', 'adopt-openj9', 'zulu' ] exclude: # was already built @@ -71,9 +71,9 @@ jobs: # no OpenJ9 21 - dist: adopt-openj9 jdk: 21 - # no OpenJ9 23 + # no OpenJ9 24 - dist: adopt-openj9 - jdk: 23 + jdk: 24 fail-fast: false runs-on: ${{ matrix.os }} diff --git a/.jenkins.groovy b/.jenkins.groovy index 3e0350f573..c2da320f9b 100644 --- a/.jenkins.groovy +++ b/.jenkins.groovy @@ -36,7 +36,7 @@ pipeline { axis { // https://cwiki.apache.org/confluence/display/INFRA/JDK+Installation+Matrix name 'MATRIX_JDK' - values 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_23_latest' + values 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_24_latest' } // Additional axes, like OS and maven version can be configured here. }