diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 9683e3bb27..80bb2f5a66 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", "19" ]' - ff-jdk: '19' + jdk-matrix: '[ "8", "11", "17", "20" ]' + ff-jdk: '20' 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 004b09ec46..f60cc67642 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ properties( final def oses = ['linux':'ubuntu && maven'] 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 = [19, 17, 11, 8] +final def jdks = [20, 17, 11, 8] final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] final def goals = ['clean', 'install']