[8.2] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#963
Merged
[8.2] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#963
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
|
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 d43e1f8. Configure here.
2 tasks
(cherry picked from commit 097d43f)
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## 8.2 #963 +/- ##
=======================================
Coverage 96.98% 96.98%
=======================================
Files 126 126
Lines 7371 7371
=======================================
Hits 7149 7149
Misses 222 222 ☔ 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.2. Replaces #952 (which carried the brokenfile:input that #953 fixed). Both upstream changes are squashed into this PR as two 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)Conflict resolution: took the v3 incoming-webhook variant of the Slack notify step from #947 (replaces the
SLACK_WEBHOOK_URLenv var withwebhook/webhook-typeinputs and addsrepositoryto the payload).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/workflow behavior may change due to major-version bumps of multiple GitHub Actions (including AWS EC2 runner management, CodeQL, Codecov, and Slack notifications), which could break builds or notifications if inputs/outputs differ.
Overview
Modernizes the CI workflows by bumping multiple 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).Fixes/aligns action configuration changes: switches Codecov upload to the
files:input forcodecov/codecov-action@v6, and updates nightly Slack failure notifications toslackapi/slack-github-action@v3using input-based incoming-webhook configuration (including an expanded payload).Reviewed by Cursor Bugbot for commit c3c3dad. Bugbot is set up for automated code reviews on this repo. Configure here.