chore(ci): upgrade all GitHub Actions to Node.js 24-compatible versions#149
Merged
Conversation
… versions RCA: Actions running on Node.js 20 are deprecated and will be forced to Node.js 24 by default on June 2nd 2026; Node.js 20 runner support ends September 16th 2026 Fix: Bump all actions across CI_Execution, CIRelease_Tagging, DeployManual, and UnpublishManual workflows to their latest Node.js 24-compatible major versions Upgrades applied: - actions/checkout: v4 -> v6 - actions/setup-node: v4 -> v6 - actions/cache: v4 -> v5 - actions/github-script: v6 -> v9 - actions/upload-artifact: v4 -> v7 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s GitHub Actions workflow dependencies to action versions that are intended to be compatible with GitHub’s upcoming Node.js 24 runtime shift, aiming to eliminate Node.js 20 deprecation warnings during CI/CD runs.
Changes:
- Bumped
actions/checkouttov6across workflows. - Bumped
actions/setup-nodetov6across workflows. - Updated other core actions where used:
actions/cache→v5,actions/github-script→v9,actions/upload-artifact→v7.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/CI_Execution.yml |
Updates checkout/setup-node/cache/github-script/upload-artifact action versions used by PR CI and test execution jobs. |
.github/workflows/CIRelease_Tagging.yml |
Updates checkout and setup-node action versions for the release-branch tagging workflow. |
.github/workflows/DeployManual.yml |
Updates checkout and setup-node action versions for manual deploy/publish workflow steps. |
.github/workflows/UnpublishManual.yml |
Updates setup-node action version for the manual unpublish workflow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 deprecation warnings visible on all CI runs — Node.js 20 actions are deprecated and GitHub will force-switch to Node.js 24 on June 2nd, 2026.
Upgrades applied across all 4 workflow files (
CI_Execution.yml,CIRelease_Tagging.yml,DeployManual.yml,UnpublishManual.yml):actions/checkoutactions/setup-nodeactions/cacheactions/github-scriptactions/upload-artifactTest plan
🤖 Generated with Claude Code