Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from Java 11 LTS to Java 21 LTS #760

Merged
merged 20 commits into from
Oct 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump from JDK 19 to 20
abyrd committed Aug 17, 2023
commit a9aca0d2f0cee37c0ff232bab0944030e90e6cd6
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -32,11 +32,11 @@ jobs:
with:
fetch-depth: 0
# Java setup step completes very fast, no need to run in a preconfigured docker container.
- name: Set up JDK 19
- name: Set up JDK 20
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 19
java-version: 20
cache: gradle
- name: Show version string
run: gradle -q printVersion | head -n1
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ version gitVersion()

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(19))
languageVersion.set(JavaLanguageVersion.of(20))
}
}