ci: drop Java 11, bump to JUnit Jupiter 6 + surefire 3.5.5#11
Merged
peo-machine merged 1 commit intomainfrom Apr 23, 2026
Merged
ci: drop Java 11, bump to JUnit Jupiter 6 + surefire 3.5.5#11peo-machine merged 1 commit intomainfrom
peo-machine merged 1 commit intomainfrom
Conversation
JUnit Jupiter 6 requires JDK 17+, so Java 11 has to leave the test matrix before we can pick up dependabot's 5.10.2 → 6.0.3 bump and the matching maven-surefire-plugin 3.5.5 bump (dependabot PR #10, which stalled on the Java 11 job). Bundling these three together since they are the same breaking change. - `.github/workflows/test.yml`: matrix `['11', '17', '21', '25']` → `['17', '21', '25']` - `pom.xml`: `maven.compiler.source/target/release` 11 → 17 - `pom.xml`: `junit-jupiter` 5.10.2 → 6.0.3 - `pom.xml`: `maven-surefire-plugin` 3.2.5 → 3.5.5 - `README.md`: "Requires JDK 11+" → "Requires JDK 17+" - `CHANGELOG.md`: add `[Unreleased]` section explaining the floor bump
This was referenced Apr 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Unblocks dependabot #6 and #10 — both stalled on the Java 11 job.
fails out of the box on the new JUnit. The four-way matrix becomes 17 / 21 / 25 LTS.
maven-surefire-plugin3.2.5 → 3.5.5 (supersedes dependabot build(deps-dev): bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.5.5 #10). Requiredfor full JUnit 6 compatibility.
maven.compiler.source/target/release11 → 17 inpom.xmlto match the new floor.[Unreleased]entry in CHANGELOG.md explaining the floor raise.Bundling these three together because they are the same breaking change —
splitting them would produce PRs that cannot pass CI independently.
Test plan
Closes
Supersedes #6 and #10 — will close those after this merges.