Skip to content

Commit c43fbde

Browse files
chore: enable FORCE_JAVASCRIPT_ACTIONS_TO_NODE24
## Summary Add `FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true` as a workflow-level environment variable to all GitHub Actions workflow files. ## Why GitHub is migrating Actions runners from Node.js 20 to Node.js 24. This environment variable opts into the new runtime ahead of the forced migration, allowing us to: - **Detect compatibility issues early** before the automatic cutover - **Control the rollout** by opting in on our own schedule - **Ensure CI/CD reliability** by validating all actions work with Node.js 24 ## Changes - Added `FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true` to workflow-level `env:` blocks - Files that already had the variable were left unchanged ## References - [GitHub Actions: All actions will run on Node20 instead of Node16 by default](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/) - [GitHub Actions: Actions Runner support for Node.js 24](https://github.blog/changelog/2025-05-06-github-actions-actions-runner-support-for-node-js-24/) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c3d4fed commit c43fbde

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
branches:
1111
- master
1212

13+
env:
14+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1315
jobs:
1416
build:
1517
name: Build and Release

0 commit comments

Comments
 (0)