[0.8] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#962
Merged
[0.8] Bump GitHub Actions to Node 24 compatible versions [MOD-15112]#962
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.8 #962 +/- ##
=======================================
Coverage 97.16% 97.16%
=======================================
Files 91 91
Lines 4896 4896
=======================================
Hits 4757 4757
Misses 139 139 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2 tasks
(cherry picked from commit 097d43f)
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.8. Replaces #951 (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.8: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-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.8.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.8.benchmark-runner.ymldoesn’t exist on0.8, 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
Mostly version bumps in CI workflows, but they affect PR checks, CodeQL scanning, coverage uploads, and EC2 self-hosted runner lifecycle; misconfigurations could break CI or reporting.
Overview
Updates GitHub Actions workflows to newer major versions to maintain Node 24 runtime compatibility:
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, andrelease-drafter@v7.Fixes the Codecov upload step by switching to
codecov/codecov-action@v6and updating its input fromfile:tofiles:so coverage is correctly picked up.Reviewed by Cursor Bugbot for commit 8514dec. Bugbot is set up for automated code reviews on this repo. Configure here.