Move CI actions to Node 24 runtimes#130
Merged
Merged
Conversation
GitHub forces actions onto Node 24 from 2026-06-16 and removes Node 20 from runners on 2026-09-16; the v0.7.9 publish run flagged all three: - actions/checkout v4 -> v5 - actions/setup-python v5 -> v6 - softprops/action-gh-release pinned SHA moves from v2.6.2 to v3.0.0 (release notes: runtime-only change, no input changes; still pinned by commit SHA since it runs with contents:write) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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 forces actions onto Node 24 starting 2026-06-16 (and removes Node 20 from runners 2026-09-16). The v0.7.9 publish run's annotations flagged all three actions we use as Node 20.
actions/checkoutv4 → v5 (using: node24, verified)actions/setup-pythonv5 → v6 (using: node24, verified)softprops/action-gh-releaseSHA re-pinnedv2.6.2→v3.0.0(b430933...) — its release notes confirm v3.0.0 is a runtime-only change (Node 20 → 24) with no input changes; our usage (files:) is unaffected. Still pinned by commit SHA since it runs withcontents: write.The CI jobs on this PR exercise checkout/setup-python at the new versions; the gh-release pin gets exercised on the next release.
🤖 Generated with Claude Code
Note
Low Risk
Workflow-only dependency bumps with no application code changes; publish still gates on tests and keeps the gh-release action SHA-pinned.
Overview
Updates CI and PyPI publish workflows so they run on GitHub’s upcoming Node 24 action runtimes instead of Node 20.
In
ci.yml, every job that usedactions/checkout@v4andactions/setup-python@v5now uses@v5and@v6respectively (lint, test matrix, package, and install-sh). Theinstall-shjob only bumps checkout; it never used setup-python.In
publish_to_pypi.yml, checkout and setup-python get the same version bumps. The release asset upload step re-pinssoftprops/action-gh-releasefrom the v2.6.2 commit tov3.0.0(b430933…), still by full SHA because that action hascontents: write. Workflow inputs (e.g.files:) are unchanged.Reviewed by Cursor Bugbot for commit e47b00d. Bugbot is set up for automated code reviews on this repo. Configure here.