[8.4] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#964
Merged
[8.4] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#964
Conversation
[MOD-15112] Bump GitHub Actions to Node 24 compatible versions Migrate all JavaScript-based GitHub Actions to versions running on the Node 24 runtime ahead of the June 2, 2026 Node 20 deprecation. - actions/checkout v4 -> v6 - actions/setup-python v5 -> v6 - actions/upload-artifact v4 -> v7 - aws-actions/configure-aws-credentials v4 -> v6 - machulav/ec2-github-runner v2.4.2 -> v2.6.1 - codecov/codecov-action v4 -> v6 - github/codeql-action/* v3 -> v4 - korthout/backport-action v3 -> v4 - release-drafter/release-drafter v6 -> v7 - slackapi/slack-github-action v1 -> v3 (input-based webhook config) (cherry picked from commit 369f14f)
[MOD-15112] Fix codecov-action 'file' input renamed to 'files' in v5+ Renaming codecov/codecov-action's 'file' input to 'files'. The 'file' input was removed in v5.0.0 (renamed to 'files') and v6 did not reintroduce it. Combined with 'disable_search: true', the old 'file:' key was silently ignored and no coverage report was uploaded. (cherry picked from commit 5ec2f77)
🛡️ Jit Security Scan Results✅ No security findings were detected in this PR
Security scan by Jit
|
2 tasks
(cherry picked from commit 097d43f)
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d9de9fe. Configure here.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## 8.4 #964 +/- ##
==========================================
- Coverage 97.06% 97.04% -0.03%
==========================================
Files 126 126
Lines 7470 7470
==========================================
- Hits 7251 7249 -2
- Misses 219 221 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
BenGoldberger
approved these changes
May 6, 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.

Describe the changes in the pull request
Manual backport of #947 and #953 to
8.4. Both upstream changes are applied as two cherry-picked commits.Migrates JavaScript-based GitHub Actions to versions running on the Node 24 runtime, ahead of the June 2, 2026 Node 20 deprecation, and uses the correct
files:input forcodecov/codecov-action@v6.Version bumps:
actions/checkoutv4v6actions/setup-pythonv5v6actions/upload-artifactv4v7aws-actions/configure-aws-credentialsv4v6machulav/ec2-github-runnerv2.4.2v2.6.1codecov/codecov-actionv4v6(input renamedfile→files)github/codeql-action/*v3v4korthout/backport-actionv3v4release-drafter/release-drafterv6v7slackapi/slack-github-actionv1v3(input-based webhook config)Both cherry-picks applied cleanly with no manual conflict resolution.
Which issues this PR fixes
Main objects this PR modified
.github/workflows/arm.yml.github/workflows/benchmark-runner.yml.github/workflows/codeql-analysis.yml.github/workflows/coverage.yml.github/workflows/event-nightly.yml.github/workflows/event-pull_request.yml.github/workflows/release-drafter.yml.github/workflows/task-backport_pr.yml.github/workflows/task-unit-test.ymlMark if applicable
Note
Medium Risk
CI behavior depends on updated third-party GitHub Actions (runner provisioning, CodeQL, Codecov, Slack, artifacts), so failures would primarily impact automation rather than product code.
Overview
Modernizes CI workflows by bumping several GitHub Actions to newer major versions (e.g.,
actions/checkout,setup-python,upload-artifact,configure-aws-credentials,machulav/ec2-github-runner,codeql-action,release-drafter,backport-action,slack-github-action).Adjusts workflow configuration where required by the upgrades, including switching Codecov’s input from
filetofilesand moving Slack notification webhook configuration intowith:inputs.Reviewed by Cursor Bugbot for commit d9de9fe. Bugbot is set up for automated code reviews on this repo. Configure here.