ci(config): bump node-20 actions to node-24 majors in snapshot/release/web-deploy#2212
Merged
Conversation
…e/web-deploy GitHub flagged these workflows with "Node.js 20 actions are deprecated" warnings. All listed actions have Node-24 major releases available. snapshot.yml: setup-java@v4 -> v5 cache@v4 -> v5 checkout@v4 -> v6 setup-node@v4 -> v6 pnpm/action-setup@v4 -> v5 web-deploy.yml: checkout@v4 -> v6 pnpm/action-setup@v4 -> v5 setup-node@v4 -> v6 cache@v4 -> v5 upload-artifact@v4 -> v7 release.yml (called by snapshot): checkout@v4 -> v6 upload-artifact@v4 (7 occurrences) -> v7 softprops/action-gh-release@v1 -> v3 Actions already on Node 24 majors (checkout@v5, upload-artifact@v6, download-artifact@v6) left alone to minimise churn. Other workflows (pr.yml, docs-verify.yml, release-candidate.yml, etc.) carry the same deprecation warnings but are out of scope for this change.
3 tasks
bpamiri
added a commit
that referenced
this pull request
Apr 22, 2026
…orkflows (#2213) * ci(config): bump node-20 actions to node-24 majors across remaining workflows Follow-up to #2212. Applies the same Node-24 migration to the remaining workflows that still carried the "Node.js 20 actions are deprecated" warnings. pr.yml: checkout@v4, setup-node@v4 -> v6 setup-java@v4 -> v5 cache@v4 -> v5 release-candidate.yml: checkout@v4 -> v6 upload-artifact@v4 (6 occurrences) -> v7 softprops/action-gh-release@v1 -> v3 deploy-ci.yml: setup-java@v4 -> v5 docs-verify.yml: checkout@v4 -> v6 pnpm/action-setup@v4 -> v5 setup-node@v4 -> v6 generate-changelog.yml, version-bump.yml: checkout@v4 -> v6 publish-chocolatey.yml: checkout@v4 -> v6 upload-artifact@v4 -> v7 * ci(config): strip FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 escape hatch from pr.yml Every action in the fast-test job now targets Node 24 natively after the version bumps in this PR, so the blanket force-flag is dead weight. Removing it.
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
Clears the "Node.js 20 actions are deprecated" warnings that GitHub emits on the Wheels Snapshots and Deploy static sites workflows. GitHub will force Node 24 starting June 2, 2026 and remove Node 20 on September 16, 2026 — getting ahead of it now.
What the warnings said
From the latest snapshot + deploy runs:
Changes
`release.yml` is bumped because it's called from `snapshot.yml` via `uses: ./.github/workflows/release.yml` and its annotations show up in snapshot runs.
Notes
Test plan