Bump CI actions to Node 24-compatible versions#7
Merged
Conversation
GitHub forces Actions onto Node 24 from 2026-06-02 and removes Node 20 from runners on 2026-09-16; the v1.0.0-rc.1 release run logged the deprecation. Bump to the latest major of each, all runs.using: node24: checkout v4->v6, cache v4->v5, upload-artifact v4->v7, action-gh-release v2->v3. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
markee | 9335c28 | Commit Preview URL Branch Preview URL |
May 19 2026, 11:43 AM |
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.
What
Bump every GitHub Actions dependency in both workflows to its latest major:
actions/checkout@v4@v6actions/cache@v4@v5actions/upload-artifact@v4@v7softprops/action-gh-release@v2@v3Why
GitHub forces Actions onto Node 24 on 2026-06-02 and removes Node 20 from
the runners on 2026-09-16. The previous pins (
@v4/@v2) all run on Node 20— the
v1.0.0-rc.1release run logged the deprecation warning. Each new majorabove has
runs.using: node24(verified against the action repos).How to verify
actionlintreports both workflows cleancheckout@v6,cache@v5, andupload-artifact@v7(theci.ymlactions)Notes for the reviewer
ci.yml's three actions are validated by this PR's own CI run.release.ymladdsaction-gh-release@v3, which only runs on a release tag.The inputs in use (
name,tag_name,body,files,draft,prerelease,fail_on_unmatched_files) are stable core inputs unchangedacross the bump — but it is worth re-running the release dry-run
(
v1.0.0-rc.2) after this merges, before tagging the realv1.0.0.