chore(deps): consolidate GitHub Actions version bumps (supersedes #591, #592, #593, #608) - #609
Merged
Merged
Conversation
Supersedes four separate Dependabot PRs (#591, #592, #593, #608) that each touched .github/workflows/pages.yml and would have cascade- conflicted on sequential merge (configure-pages and upload-pages-artifact share a diff hunk). Bumping them in one commit avoids 3-4 rounds of @dependabot rebase and fixes a checkout version skew in the same pass. Changes: pages.yml: actions/checkout v4 -> v7 (#608) actions/configure-pages v5 -> v6 (#592) actions/upload-pages-artifact v3 -> v5 (#593) actions/deploy-pages v4 -> v5 (#591) ci.yml + release.yml: actions/checkout v6 -> v7 The checkout bump in ci.yml/release.yml closes a version skew: PR #590 (merged earlier) bumped those two workflows v4 -> v6 but left pages.yml on v4. Rather than land pages.yml on v7 while the others stayed v6, all three are aligned to v7. Compatibility note: upload-pages-artifact v3 -> v5 crosses the artifact-backend change (same generation as actions/upload-artifact v4). This is compatible only when deploy-pages moves up in lockstep, which is exactly why the Pages trio is bumped together here rather than piecemeal. The ci.yml 'ci' check does NOT exercise pages.yml (it only runs on push to main touching docs/taskplane-overview/**), so this PR's green CI does not validate the Pages deploy. That is verified separately via workflow_dispatch after merge. Dependabot PRs #591, #592, #593, #608 will be closed as superseded.
HenryLach
enabled auto-merge
June 21, 2026 14:59
This was referenced Jun 21, 2026
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.
Consolidates four separate Dependabot PRs that each touched
.github/workflows/pages.ymland would have cascade-conflicted on sequential merge.Why consolidate instead of merging the Dependabot PRs
pages.yml.configure-pages(line 44) andupload-pages-artifact(line 47) share a diff hunk, so merging one forces the others to rebase — 3–4 rounds of@dependabot rebase.ci.ymlandrelease.ymlfrom v4→v6 but leftpages.ymlon v4. Landingpages.ymlon v7 while the others stayed v6 would leave three workflows at v6/v6/v7. This PR aligns all three to v7.Changes
pages.ymlpages.ymlpages.ymlpages.ymlci.ymlrelease.ymlCompatibility note
upload-pages-artifactv3 → v5 crosses the artifact-backend change (same generation asactions/upload-artifactv4). It's compatible only whendeploy-pagesmoves up in lockstep — which is exactly why the Pages trio is bumped together here rather than piecemeal.The
cicheck isci.yml, which does not exercisepages.yml(that only runs on push tomaintouchingdocs/taskplane-overview/**, or viaworkflow_dispatch). So this PR's green CI does not validate the Pages deploy. I will verify the actual deploy viaworkflow_dispatchimmediately after merge — if the new action versions break the microsite publish, I'll catch it then and roll back.Follow-up
After merge + Pages-deploy verification, Dependabot PRs #591, #592, #593, #608 will be closed as superseded. The
yamlbump (#579, npm ecosystem, different file) is handled separately.