Skip to content

Commit

Permalink
Upgrade JDK compatibility tests (#3599)
Browse files Browse the repository at this point in the history
* Upgrade JDK compatibility tests

* Added JDK 23 ea

* Attempt to set net.bytebuddy.experimental for EA versions

* Remove java 23-ea tests
  • Loading branch information
JonasKunz authored Apr 25, 2024
1 parent ad564ae commit 7ee2898
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ jobs:
distribution: 'temurin'
- version: 21
distribution: 'temurin'
- version: 22-ea
- version: 22
distribution: 'temurin'
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class JdkVersionTest {
private static List<Arguments> releaseSchedule() {
// from https://www.oracle.com/java/technologies/java-se-support-roadmap.html
return List.of(
Arguments.of(22, LocalDate.parse("2024-04-01")),
Arguments.of(23, LocalDate.parse("2024-10-01")),
Arguments.of(24, LocalDate.parse("2025-04-01")),
Arguments.of(25, LocalDate.parse("2025-10-01"))
Expand Down

0 comments on commit 7ee2898

Please sign in to comment.