[0.6] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#960
Merged
[0.6] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#960
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
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## 0.6 #960 +/- ##
=======================================
Coverage 95.31% 95.31%
=======================================
Files 60 60
Lines 3371 3371
=======================================
Hits 3213 3213
Misses 158 158 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2 tasks
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
0.6. Replaces #949 (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 applied to the workflow files that exist on
0.6:actions/checkoutv4v6actions/setup-pythonv5v6actions/upload-artifactv4v7aws-actions/configure-aws-credentialsv4v6machulav/ec2-github-runnerv2/v2.4.1v2.6.1codecov/codecov-actionv4v6(input renamedfile→files)github/codeql-action/*v3v4korthout/backport-actionv2v4release-drafter/release-drafterv6v7Conflict-resolution notes:
Upload Logsartifact step in PR workflow, sanitizer step in coverage,notify-on-failureSlack job in nightly, andsubmodules: recursiveadds) were intentionally dropped because they don’t exist on0.6.slackapi/slack-github-actionv1→v3 from Bump GitHub Actions to Node 24 compatible versions [MOD-15112] #947 was dropped because thenotify-on-failurejob doesn’t exist on0.6.benchmark-runner.ymldoesn’t exist on0.6, so its changes were skipped.Which issues this PR fixes
Main objects this PR modified
.github/workflows/arm.yml.github/workflows/codeql-analysis.yml.github/workflows/coverage.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
Primarily version bumps to third-party GitHub Actions; main risk is CI workflow behavior changes or breaking inputs (e.g., Codecov/CodeQL, EC2 runner management) impacting build stability rather than product code.
Overview
Updates multiple CI workflows to use newer, Node 24-compatible GitHub Actions versions (e.g.,
actions/checkout@v6,actions/setup-python@v6,actions/upload-artifact@v7,aws-actions/configure-aws-credentials@v6,machulav/ec2-github-runner@v2.6.1,github/codeql-action@v4,korthout/backport-action@v4,release-drafter@v7).Fixes the Codecov upload step to match the newer action API by switching the input from
filetofileswhile also upgradingcodecov/codecov-actiontov6.Reviewed by Cursor Bugbot for commit 4b3f857. Bugbot is set up for automated code reviews on this repo. Configure here.