ci: update GitHub Actions to current majors - #14
Merged
Conversation
The workflows shipped pinned to versions that were already a major or two behind — Dependabot opened four PRs on its first run saying so. Consolidated into one change so this costs a single CI run rather than four. checkout v4 -> v7, cache v4 -> v6, deploy-pages v4 -> v5, upload-pages-artifact v3 -> v5. Supersedes #10, #11, #12, #13. 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.
Dependabot's first run opened four PRs (#10–#13) pointing out that the workflows I shipped in 2.0.0/2.1.0 were already pinned a major or two behind. It's right.
actions/checkoutactions/cacheactions/deploy-pagesactions/upload-pages-artifactConsolidated into one change so this costs a single CI run instead of four — the
providersjob alone takes ~5 minutes because it compiles the full vendor SDK set. Supersedes #10, #11, #12 and #13, which I'll close once this is green.This PR exercises every changed action on itself:
checkoutandcacherun in CI here, anddeploy-pages/upload-pages-artifactrun in the documentation workflow on merge tomaster.🤖 Generated with Claude Code