ci: bump GitHub Actions off the deprecated Node 20 runtime#122
Merged
Conversation
Node 20 is deprecated on GitHub Actions runners; bump first-party and docker actions to the latest majors that run on Node 24: - actions/checkout v4 -> v6 - actions/cache v4 -> v5 - actions/setup-node v4 -> v6 - actions/upload-pages-artifact v3 -> v5 - actions/deploy-pages v4 -> v5 - docker/setup-buildx-action v3 -> v4 - docker/login-action v3 -> v4 - docker/build-push-action v6 -> v7 All inputs in use (submodules, fetch-depth, context/file/push/tags, cache-from/to, key/path) are unchanged across these majors. Third-party actions (buildkit-cache-dance, repository-dispatch, action-gh-release, setup-msys2) were not flagged and are left as-is.
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.
GitHub Actions runners are deprecating the Node 20 runtime (warning seen on the docker build job). Bumps first-party + docker actions to the latest majors that run on Node 24:
All major bumps are essentially "Node 24 runtime + drop deprecated inputs/outputs". Every input these workflows actually use (
submodules,fetch-depth,context/file/push/tags,cache-from/cache-to, cachekey/path, buildxnameoutput for the cache-dance) is stable across these majors — verified against each action's v*.0.0 release notes.Third-party actions not flagged by the deprecation (
reproducible-containers/buildkit-cache-dance,peter-evans/repository-dispatch,softprops/action-gh-release,msys2/setup-msys2) are left as-is to avoid untested bumps.Verification
This PR's own
docker-pr-buildrun exercises the new checkout/buildx/login/cache/build-push versions end-to-end — green here confirms the bumps work.