ci: bump GitHub Actions to Node.js 24 runtimes#16
Merged
Conversation
Node.js 20 is deprecated on GitHub Actions runners. Bump each action to its newest Node.js 24 release: - actions/checkout v3 -> v7 - actions/setup-python v2 -> v7 - astral-sh/setup-uv v5 -> v7 - cycjimmy/semantic-release-action v4 -> v6 Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Summary
GitHub Actions runners have deprecated Node.js 20 (changelog). CI was emitting a warning that
actions/checkout@v3,actions/setup-python@v2,astral-sh/setup-uv@v5, andcycjimmy/semantic-release-action@v4were being force-run on Node.js 24.This bumps each action to its newest reference whose
action.ymldeclaresusing: node24, clearing the warning.actions/checkout@v3@v7actions/setup-python@v2@v7astral-sh/setup-uv@v5@v7cycjimmy/semantic-release-action@v4@v6Notes
checkout/setup-pythonuse major tags,semantic-release-actionuses a major branch).astral-sh/setup-uv,v7is the newest movable major tag — the maintainers publish v8/v9 only as exact versions (e.g.@v9.0.0). Can pin to an exact latest instead if preferred.python-version,extra_plugins, etc. inputs are stable across these majors).🤖 Generated with Claude Code