Upgrade GitHub Actions for Node 24 compatibility#254
Conversation
Greptile OverviewGreptile SummaryThis PR upgrades GitHub Actions to their latest versions for Node 24 compatibility ahead of Node 20's EOL in April 2026. The changes include upgrading Key findings:
Confidence Score: 3/5
Important Files ChangedFile Analysis
|
There was a problem hiding this comment.
Additional Comments (3)
-
.github/workflows/runtime_build_and_test.yml, line 43 (link)syntax:
actions/cache/restoreandactions/cache/saveshould be upgraded to@v5to match the mainactions/cache@v5upgrade. These are part of the same repository and should use consistent versions.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
-
.github/workflows/runtime_build_and_test.yml, line 58 (link)syntax: Upgrade to
@v5for consistencyNote: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
-
.github/workflows/runtime_build_and_test.yml, line 68 (link)syntax: Upgrade to
@v5for consistencyNote: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
15 files reviewed, 3 comments
|
This pull request has been automatically marked as stale. If this pull request is still relevant, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize reviewing it yet. Your contribution is very much appreciated. |
|
Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! |
Mirror of facebook/react#35371
Original author: salmanmkc
Summary
Upgrade GitHub Actions to their latest versions to ensure compatibility with Node 24, as Node 20 will reach end-of-life in April 2026.
Changes
actions/cachev5actions/checkoutv6actions/download-artifactv7actions/github-scriptv8actions/setup-javav5actions/setup-nodev6actions/stalev10actions/upload-artifactv6Context
Per GitHub's announcement, Node 20 is being deprecated and runners will begin using Node 24 by default starting March 4th, 2026.
Why this matters
Security Note
Actions that were previously pinned to commit SHAs remain pinned to SHAs (updated to the latest release SHA) to maintain the security benefits of immutable references.
Testing
These changes only affect CI/CD workflow configurations and should not impact application functionality. The workflows should be tested by running them on a branch before merging.