chore(deps): bump GitHub Pages actions (configure/upload/deploy)#222
Merged
Conversation
Bumps the three GitHub Pages deploy-pipeline actions to their current major versions as a single set, since the upload/deploy artifact format is coupled and should move together: - actions/configure-pages 5 -> 6 (Node 20 -> 24 runtime) - actions/upload-pages-artifact 3 -> 5 (internal upload-artifact -> v7) - actions/deploy-pages 4 -> 5 (Node 20 -> 24 runtime) Combines Dependabot PRs #211, #212 and #213 into one merge so the production Pages deploy runs once with a matched action set rather than through three intermediate states. upload-pages-artifact v4+ excludes hidden files (dotfiles) from the artifact; the built _site has no dotfiles (no .nojekyll/.well-known), so this has no effect here. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
✅ Deploy Preview for grand-swan-ca5201 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR consolidates three Dependabot updates to the GitHub Pages deployment workflow so the pipeline moves to a consistent, matching set of Pages actions in a single production deploy.
Changes:
- Bump
actions/configure-pagesfromv5→v6. - Bump
actions/upload-pages-artifactfromv3→v5. - Bump
actions/deploy-pagesfromv4→v5.
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.
Combines the three open Dependabot bumps for the GitHub Pages deploy pipeline into a single merge, so the production deploy runs once with a matched action set rather than passing through three intermediate states. Closes #211, #212, #213.
Changes — .github/workflows/deploy.yml
upload-artifact→ v7; addsinclude-hidden-filesWhy combine rather than merge separately
upload-pages-artifactanddeploy-pagesare a coupled pair — the deploy job consumes the artifact the upload job produces — so they should move together. Merging the three Dependabot PRs one at a time would briefly leavemainwith a mixed action set on any deploy triggered in between, and would queue three production deploys. One PR avoids both.Breaking-change check
upload-pages-artifactv4+ excludes hidden files (dotfiles) from the Pages artifact. The built_sitecontains no dotfiles (no.nojekyll, no.well-known), so this has no effect here. The other two bumps are runtime-only.Note:
deploy-pages@v5runs only in thedeployjob, which is gated tomain, so it is exercised for the first time on the post-merge deploy (not by the PRbuildcheck). Thebuildcheck does exerciseconfigure-pages@v6andupload-pages-artifact@v5.🤖 Generated with Claude Code