Upgrade Node.js to 24 and bump GitHub Actions#455
Merged
Conversation
checkout@v3 and setup-node@v3 use the Node 16 runtime which is already deprecated. Upgrading to checkout@v6 and setup-node@v5 moves to the Node 20+ runtime ahead of the June 16 enforcement.
Node 18 reached end-of-life in April 2025. Upgrading the CI workflow, Dockerfile, and adding an .nvmrc to target Node 24, which becomes LTS in October 2026.
Codifies the supported Node version range so npm install fails early if someone tries to use an unsupported version.
ianrohde
approved these changes
Jun 5, 2026
Contributor
ianrohde
left a comment
There was a problem hiding this comment.
CR ⚪
We just did this over on the expo repo 👍
Contributor
Author
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.

Description
Addresses the pulldasher items from iFixit/ifixit#62294. Pulldasher was P0 — still using
@v3actions (Node 16 runtime, already deprecated) and running on Node 18 (EOL since April 2025).This upgrades all Node.js and CI configuration ahead of the June 16, 2026 deadline when GitHub forces all
node20actions to Node 24.Changes
actions/checkout@v3→@v6,actions/setup-node@v3→@v5.nvmrc"node": ">=24.0.0 <25.0.0"topackage.jsonTest plan
node:24-alpine