From 3fdad709462c52711ee7f0c1d3ff521dfb28181c Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Sat, 11 Nov 2023 10:24:26 +0700 Subject: [PATCH] [#391] Add JDK 21 to CI build Because #391 introduces special handling of the fact that in JDK 20+ there is no more Thread::stop, we should also run the tests on JDK 21. --- .github/workflows/maven.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2bf38108..3e953733 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,5 +24,6 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: + jdk-matrix: '[ "8", "17", "21" ]' ff-maven: "3.9.5" # Maven version for fail-fast-build maven-matrix: '[ "3.6.3", "3.8.8", "3.9.5" ]' # Maven versions matrix for verify builds