Bump CI actions off deprecated Node.js 20#5421
Merged
Merged
Conversation
GitHub is deprecating the Node.js 20 runtime for JavaScript actions: it
is forced to Node.js 24 on 2026-06-16 and removed on 2026-09-16, which
surfaces "Node.js 20 actions are deprecated" warnings across our
workflows.
Bump every affected action to a release that runs on Node.js 24. All are
runtime-only major bumps with no input or behavior changes for our usage:
- azure/setup-helm v4.3.1 -> v5.0.0
- docker/login-action v3.7.0 -> v4.2.0
- docker/setup-buildx-action v3.12.0 -> v4.1.0
- docker/metadata-action v5.10.0 -> v6.1.0
- docker/build-push-action v6.19.2 -> v7.2.0
- codecov/codecov-action v5 -> v6.0.1 (also moves its
embedded github-script v7 -> v8)
- slackapi/slack-github-action v2.1.1 -> v3.0.3
arduino/setup-task and golang/govulncheck-action are left as-is: neither
has a Node.js 24 release yet.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5421 +/- ##
==========================================
- Coverage 68.84% 68.83% -0.02%
==========================================
Files 634 634
Lines 64433 64433
==========================================
- Hits 44358 44350 -8
- Misses 16795 16801 +6
- Partials 3280 3282 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
JAORMX
approved these changes
Jun 3, 2026
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 is deprecating the Node.js 20 runtime for JavaScript actions (changelog): it is forced to Node.js 24 on 2026-06-16 and removed from runners on 2026-09-16. This currently surfaces "Node.js 20 actions are deprecated" warnings across nearly every workflow.
This PR bumps every affected action that has a Node.js 24 release to clear the warnings. All bumps are runtime-only major-version changes — verified against upstream release notes that the only breaking change is the Node bump, with no input or behavior changes for how we use them:
azure/setup-helmv4.3.1→v5.0.0docker/login-actionv3.7.0→v4.2.0docker/setup-buildx-actionv3.12.0→v4.1.0docker/metadata-actionv5.10.0→v6.1.0docker/build-push-actionv6.19.2→v7.2.0codecov/codecov-actionv5→v6.0.1(also resolves its embeddedactions/github-scriptv7→v8)slackapi/slack-github-actionv2.1.1→v3.0.3(webhook/webhook-type/payloadinputs unchanged)Type of change
Test plan
Workflow-only change with no local entry point, so verification was done at the source level:
action.ymldeclaresusing: node24.API Compatibility
v1beta1API, OR theapi-break-allowedlabel is applied and the migration guidance is described above.Changes
image-build-and-publish.ymlskills-build-and-publish.ymltest.ymlreleaser.ymlhelm-publish.yml,helm-charts-test.yml,test-e2e-lifecycle.yml,operator-ci.yml# pin@v4.3.0note)Does this introduce a user-facing change?
No.
Special notes for reviewers
Two Node 20 actions are intentionally left as-is because no Node.js 24 release exists upstream yet:
arduino/setup-task— latest is v2.0.0 (stillnode20); needs a separate fix (e.g.go install) and is out of scope here.golang/govulncheck-action@v1.0.4— we are already on its latest release; thesetup-go@v5.0.0→v6.2.0fix is only on an unreleased upstream commit. Renovate will bump it once a new release ships; GitHub force-migrates it to Node 24 on 2026-06-16 regardless.renovate.jsonis untouched;arduino/setup-taskremains in the "setup and language actions" group.Generated with Claude Code