-
Notifications
You must be signed in to change notification settings - Fork 673
Chore: Actions updates and cleanup #8377
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
Merged
Merged
Changes from 13 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
538284f
chore: upgrade GitHub Actions to latest versions
DrJKL 5d41545
ci: optimize workflows and reduce redundant steps
DrJKL bde2878
Why do we have both?
DrJKL 524ff42
chore: rename .yml files to .yaml
DrJKL d9830a1
security: pin third-party GitHub Actions to commit SHAs
DrJKL de91d94
ci: add pinact validation workflow for SHA pinning enforcement
DrJKL 7b5b301
fix: pinact config. rerun
DrJKL 16e93d7
chore: pin the versions for official actions to ensure consistency
DrJKL 08709f3
Try updating the pins again.
DrJKL b7e08f5
Don't forget the actions.
DrJKL 4527a98
Update .yamllint to not conflict with comments from pinact.
DrJKL 6c89190
Missed actions/cache
DrJKL fd4a2d4
Remove cache restore entirely.
DrJKL eaa5d55
Run pinact -u
DrJKL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
File renamed without changes.
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
🧩 Analysis chain
🌐 Web query:
actions/checkout v6 release notes breaking changes💡 Result:
actions/checkout v6 — breaking/behavior-changing notes
.git/configwhenpersist-credentials: true. v6 persists credentials to a separate file under$RUNNER_TEMPinstead (security hardening). This can break workflows/scripts that expect to read auth from.git/config(e.g., custom tooling that parses config rather than just runninggit fetch/push). [1][2]git fetch,git push, etc. should still work). [1]Sources:
[1] actions/checkout README (“Checkout v6 / What’s new”)
[2] v6.0.0 release notes (includes “Persist creds to a separate file”)
🌐 Web query:
actions/github-script v8 release breaking changes💡 Result:
actions/github-script@v8has one explicit breaking change:script(language/runtime behavior and bundled dependencies). [1][2]No other v8-specific breaking API surface changes are called out in the project’s breaking-changes notes beyond the Node 24 runtime/runner requirement. [1]
🌐 Web query:
actions/download-artifact v7 release breaking changes💡 Result:
For
actions/download-artifact@v7, the breaking change called out in the release docs is:runs.using: node24). This requires GitHub Actions Runner >=2.327.1—so older self-hosted runners must be updated before upgrading to@v7, or the action can fail to run. [1]Source: [1]
Verify GitHub Actions version upgrades for breaking changes.
The version bumps have confirmed breaking changes:
.git/config; they're now persisted to a separate file under$RUNNER_TEMP. Workflows or scripts that parse.git/configfor authentication will break. Also requires runner v2.329.0+ for authenticated git commands from Docker containers.scriptblock; requires runner v2.327.1+.Ensure your GitHub Actions runners meet the minimum version requirements and that workflows do not depend on credential storage in
.git/config.🤖 Prompt for AI Agents
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.
It's good.
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.
@DrJKL, understood! I've noted that you're aware of the breaking changes in the upgraded actions and they're acceptable for this workflow.🧠 Learnings used