From 0c35f44c93c911ac04cc8e9b81e0794aae019796 Mon Sep 17 00:00:00 2001 From: "Pabst, Andreas" Date: Sat, 31 Dec 2022 12:32:03 +0100 Subject: [PATCH] [SUREFIRE-2139] Replace EOL JDK18 with JDK19 in build --- .github/workflows/maven-verify.yml | 4 ++-- Jenkinsfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 82594f32f3..9683e3bb27 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -26,8 +26,8 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: - jdk-matrix: '[ "8", "11", "17", "18" ]' - ff-jdk: '18' + jdk-matrix: '[ "8", "11", "17", "19" ]' + ff-jdk: '19' ff-goal: 'clean install site site:stage -P reporting -nsu' ff-site-goal: '-v' verify-goal: 'clean install -nsu -P run-its' diff --git a/Jenkinsfile b/Jenkinsfile index c3f1381912..7fd400529a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ properties( final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he'] final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x'] // all non-EOL versions and the first EA -final def jdks = [18, 17, 11, 8] +final def jdks = [19, 17, 11, 8] final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] final def goals = ['clean', 'install']