-
Notifications
You must be signed in to change notification settings - Fork 229
Bump Java baseline from 17 to 21 for Grails 8 #1216
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,7 @@ jobs: | |
| - name: "☕️ Setup JDK" | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| java-version: 21 | ||
| distribution: liberica | ||
| - name: "🐘 Setup Gradle" | ||
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | ||
|
|
@@ -64,7 +64,7 @@ jobs: | |
| - name: "☕️ Setup JDK" | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| java-version: 21 | ||
|
||
| distribution: liberica | ||
| - name: "🐘 Setup Gradle" | ||
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | ||
|
|
@@ -90,7 +90,7 @@ jobs: | |
| - name: "☕️ Setup JDK" | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| java-version: 21 | ||
|
||
| distribution: liberica | ||
| - name: "🐘 Setup Gradle" | ||
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -36,7 +36,7 @@ jobs: | |||||
| uses: actions/setup-java@v4 | ||||||
| with: | ||||||
| distribution: liberica | ||||||
| java-version: 17 | ||||||
| java-version: 21 | ||||||
|
||||||
| java-version: 21 | |
| java-version: 21.0.10 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| java=17.0.17-librca | ||
| java=21.0.10-librca | ||
| gradle=8.14.4 | ||
| # This is here to support the test app generation in the *rest projects | ||
| grails=7.0.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reproducibility and to keep CI aligned with the pinned versions used elsewhere (e.g.,
release.ymlusesJAVA_VERSION: 21.0.10and.sdkmanrcpins21.0.10-librca), consider pinningactions/setup-javato the same patch version (e.g.,21.0.10) instead of the floating major21. This reduces the risk of CI behavior changing unexpectedly when a new 21.x patch is released.