chore: bump GitHub Actions to Node 24-compatible versions#3
Merged
Conversation
Addresses the Node.js 20 deprecation warning surfaced on the v0.0.1 publish run. Node 20 is forced to Node 24 starting 2026-06-02 and removed from runners on 2026-09-16. Bumps: - actions/checkout v4 -> v6 - actions/setup-python v5 -> v6 - actions/upload-artifact v4 -> v7 - actions/download-artifact v4 -> v8 Each is the first major that ships Node 24 (and the latest stable as of today). The upload/download-artifact major jump (v4 -> v7/v8) is larger; our usage is the minimal "upload then download once" pattern that's unaffected by the immutability changes introduced in v5.
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
Addresses the Node.js 20 deprecation warning that surfaced on the v0.0.1 publish run. Node 20 is forced to Node 24 starting 2026-06-02 and removed from runners on 2026-09-16.
Changes
actions/checkoutactions/setup-pythonactions/upload-artifactactions/download-artifactEach is the first major that ships Node 24 (and the latest stable as of today). All 9 references across
ci.yml,auto-release.yml,publish.ymlupdated.Risk
The
upload/download-artifactmajor jump (v4 → v7/v8) is the only non-trivial one — v5 introduced artifact immutability semantics that affected re-uploading the same artifact name. Our usage is the minimal "upload-once-then-download-once" pattern that's unaffected by those changes.CI will catch any breakage on this PR. The publish workflow won't run again until the next release tag, so any regression there would only surface on the next release — flagging this so we know to test that path on whatever ships next.
Verification