chore(ci): bump artifact actions to Node 24 runtimes#81
Merged
Conversation
upload-artifact v5 and download-artifact v6 still declare node20, which GitHub deprecates on runners June 16, 2026. v7/v8 are the node24 majors; our usage (named single-binary artifacts, download-all into a directory) is unaffected by the ESM/direct-upload changes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Updates the release/patch-release GitHub Actions workflows to use artifact actions that run on Node 24, eliminating Node 20 deprecation warnings ahead of GitHub’s upcoming default runtime change.
Changes:
- Bump
actions/upload-artifactfromv5tov7in release and patch-release workflows. - Bump
actions/download-artifactfromv6tov8in release and patch-release workflows.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/release.yml |
Updates upload/download artifact action majors to Node 24-capable versions in the release pipeline. |
.github/workflows/patch-release.yml |
Updates upload/download artifact action majors to Node 24-capable versions in the patch release pipeline. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
The v0.0.27 release run still emitted Node 20 deprecation warnings from
actions/upload-artifact@v5andactions/download-artifact@v6— those majors declareruns.using: node20despite PR #79's bumps. GitHub forces Node 24 by default on runners starting June 16, 2026.actions/upload-artifactv5 → v7 (node24 since v6; v7 adds opt-in direct uploads + ESM — no behavior change for our named single-binary artifacts)actions/download-artifactv6 → v8 (node24 since v7; v8 adds ESM and errors on hash mismatch by default — a safety improvement for release assets)Verified every other action in the repo already declares
node24(checkout@v5,cache@v5,setup-node@v6,setup-python@v6,softprops/action-gh-release@v3, pages actions).upload-pages-artifact@v5is composite and already wraps upload-artifact v7.0.0 internally.Touches
release.ymlandpatch-release.ymlonly — 4 lines.🤖 Generated with Claude Code