ci: bump GitHub Actions to current majors - #514
Merged
Conversation
frontend.yml was pinned to checkout@v2 / setup-node@v1, whose Node 12/16 runtimes are long deprecated. Move every action to its current major: checkout v2/v3 -> v7 setup-node v1/v3 -> v7 setup-python v4 -> v7 cache v3/v4 -> v6 configure-pages v3 -> v6 upload-pages-artifact v3 -> v5 deploy-pages v4 -> v5 Beyond the runtime bump, checkout v6 writes credentials to a separate file and v7 refuses to check out fork PR code under pull_request_target and workflow_run. Neither workflow uses those triggers, so this is defense in depth against someone adding one later. No input changes were needed; the repo only uses fetch-depth, node-version, python-version, cache, path and key, which are all unchanged across these majors. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
frontend.yml was pinned to checkout@v2 / setup-node@v1, whose Node 12/16 runtimes are long deprecated. Move every action to its current major:
checkout v2/v3 -> v7
setup-node v1/v3 -> v7
setup-python v4 -> v7
cache v3/v4 -> v6
configure-pages v3 -> v6
upload-pages-artifact v3 -> v5
deploy-pages v4 -> v5
Beyond the runtime bump, checkout v6 writes credentials to a separate file and v7 refuses to check out fork PR code under pull_request_target and workflow_run. Neither workflow uses those triggers, so this is defense in depth against someone adding one later.
No input changes were needed; the repo only uses fetch-depth, node-version, python-version, cache, path and key, which are all unchanged across these majors.