chore(ci): bump release.yml actions to Node.js 24 compatible majors#99
Merged
Conversation
GitHub deprecated Node.js 20 actions; the runner forces Node.js 24 on June 2, 2026 and removes Node.js 20 on September 16, 2026. All other workflows in this repo (ruff.yml, pytest.yml, uv_lock_upgrade.yml, and the scaffolded copies) already use checkout@v5 + setup-uv@v7. Only release.yml was still pinned to the Node.js 20 majors that the deprecation notice flagged. Updates: - actions/checkout v4 -> v5 (3 occurrences) - astral-sh/setup-uv v5 -> v7 (matches the other workflows) - actions/upload-artifact v4 -> v6 (v5 still defaulted to Node 20) - actions/download-artifact v4 -> v6 (3 occurrences, same reason) Third-party actions left as-is — they were not in the deprecation warning and their current major versions already support Node 24: - amannn/action-semantic-pull-request@v6 - softprops/action-gh-release@v2 - pypa/gh-action-pypi-publish@release/v1 - peter-evans/create-pull-request@v7 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
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.
🚀 PR Type
📝 Summary
GitHub Actions deprecation 경고 해결:
release.yml의 Node.js 20 기반 action 버전을 Node.js 24 호환 majors로 bump.📄 Description
배경
GitHub Actions deprecation 일정:
워크플로우 실행 시 다음 경고 표시:
진단
레포 내 모든 workflow를 audit한 결과,
release.yml하나만 이전 majors를 쓰고 있었음. 다른 workflow들(ruff.yml,pytest.yml,uv_lock_upgrade.yml)은 이미checkout@v5+setup-uv@v7.변경
actions/checkoutastral-sh/setup-uvactions/upload-artifactactions/download-artifact변경하지 않은 항목
deprecation 경고에 언급되지 않았고 현재 major가 Node 24 호환:
amannn/action-semantic-pull-request@v6softprops/action-gh-release@v2pypa/gh-action-pypi-publish@release/v1peter-evans/create-pull-request@v7✅ Quality Checks
🤖 Generated with Claude Code