chore: drop JDK 8 from integration test matrix#172
Merged
Conversation
Adds JDK 17 and replaces JDK 24 with JDK 25 so the test matrix lines up with the build matrix.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
- 8 # Oldestfrom thetestmatrix in.github/workflows/build.yaml.Java 8 Testjob that's been failing since the Gradle 9.3.1 wrapper bump in91809c3.Why
Gradle 9.x dropped JDK 8 support for running the Gradle daemon, so the
Java 8 Testjob fails immediately with:The library's bytecode target also moved to JDK 17 in
452e52d chore: fix gradle warnings(sourceCompatibility/targetCompatibility = VERSION_17), so the artifact can't run on JDK 8 at runtime either. The matrix entry is dead weight that just turns every PR red.Failing run: https://github.com/authzed/authzed-java/actions/runs/26462262774/job/77913010022
The
buildmatrix is already JDK 17 / 21 / 25 — no JDK 8 there to remove.Test plan