-
Notifications
You must be signed in to change notification settings - Fork 2
fix(action): restore Core runtime compatibility #101
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 |
|---|---|---|
|
|
@@ -162,6 +162,13 @@ runs: | |
| with: | ||
| python-version: '3.12' | ||
|
|
||
| - name: Setup Java for CodeBoarding | ||
| if: steps.guard.outputs.skip != 'true' | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: temurin | ||
| java-version: '21' | ||
|
Comment on lines
+168
to
+170
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When a workflow configures Useful? React with 👍 / 👎. |
||
|
|
||
| - name: Install CodeBoarding | ||
| if: steps.guard.outputs.skip != 'true' | ||
| shell: bash | ||
|
|
||
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.
actions/setup-java@v5moved its runtime to Node 24 and requires Actions Runner v2.327.1 or newer, so otherwise-valid self-hosted and GitHub Enterprise Server jobs on older runners now fail at this step before CodeBoarding starts, including reviews of non-Java repositories.setup-java@v4can install Temurin 21 without imposing this new runner requirement, so use that major unless dropping older runners is intentional and documented.Useful? React with 👍 / 👎.