ci: standardize actions/checkout to v6 in deploy-site workflow#881
Open
Dashsoap wants to merge 1 commit into
Open
ci: standardize actions/checkout to v6 in deploy-site workflow#881Dashsoap wants to merge 1 commit into
Dashsoap wants to merge 1 commit into
Conversation
release.yml already uses actions/checkout@v6 (and setup-node@v6), but deploy-site.yml still pins actions/checkout@v4. Align the two workflows on checkout@v6 so the repo isn't running two different major versions of the same action. Scope: only actions/checkout is bumped. deploy-pages@v4 and withastro/action@v3 are independent action version lines and are left untouched.
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.
What
Bump
actions/checkout@v4→@v6in.github/workflows/deploy-site.yml.Why
The repo runs two different major versions of the same action across its two workflows:
.github/workflows/release.yml→actions/checkout@v6(andactions/setup-node@v6).github/workflows/deploy-site.yml→actions/checkout@v4Aligning both on
checkout@v6keeps the CI consistent and on the current major.Scope: only
actions/checkoutis bumped.actions/deploy-pages@v4andwithastro/action@v3are independent action version lines and are intentionally left untouched.