ci: bump GitHub Actions to latest majors (checkout v7, setup-dotnet v6, artifact v7/v8, setup-python v7) - #630
Merged
Merged
Conversation
Updates the five action pins that were behind their latest published major, across all four workflow files (benchmark.yml, build-and-release.yml, docs.yml, fuzz-soak.yml): actions/checkout v5 -> v7 (was two majors behind) actions/download-artifact v7 -> v8 actions/upload-artifact v6 -> v7 actions/setup-python v6 -> v7 actions/setup-dotnet v5 -> v6 Left at their already-current majors (unchanged): softprops/action-gh-release@v3, actions/configure-pages@v6, actions/deploy-pages@v5, actions/upload-pages-artifact@v5. These are major-version bumps, so the branch's CI is the gate — in particular the upload-artifact / download-artifact pair must round-trip (those actions changed artifact semantics across the v3->v4 boundary; upload@v7 and download@v8 are the current compatible pair). No workflow logic changed — only the `uses:` pins.
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.
Summary
Bumps the five GitHub Actions that were behind their latest published major, across all four workflow files (
benchmark.yml,build-and-release.yml,docs.yml,fuzz-soak.yml).Already at their current-latest majors, left unchanged:
softprops/action-gh-release@v3,actions/configure-pages@v6,actions/deploy-pages@v5,actions/upload-pages-artifact@v5.Scope
uses:pins changed (+39/−39) — no workflow logic touched.Why the branch's CI is the gate
These are major-version bumps. The
upload-artifact/download-artifactpair in particular must round-trip (those actions changed artifact semantics across the v3→v4 boundary;upload@v7+download@v8are the current compatible pair). Let this branch's build / test / interop / package-consumer-smoke jobs prove nothing broke before merging. This PR publishes nothing (release jobs are tag-only).