ci: bump GitHub Actions to node24 runtimes - #315
Merged
Conversation
actions/checkout@v4, actions/setup-node@v4 and cypress-io/github-action@v6 all run on the node20 action runtime, which GitHub is deprecating — hence the "Node.js 20 is deprecated" warning on the Actions runner. Bump each to the major that runs on node24: - actions/checkout v4 -> v5 (testing, e2e, publish) - actions/setup-node v4 -> v5 (testing, publish) - cypress-io/github-action v6 -> v7 (e2e) This is the action runtime only; the build/test Node (node-version 22.17.1) is unchanged. cypress-io/github-action v7.0.0's sole breaking change is the node20 -> node24 runtime bump, so the build/start/browser inputs are unaffected.
PiTrem
force-pushed
the
chore/ci-bump-actions-node24
branch
from
June 29, 2026 10:54
cb48520 to
892290f
Compare
The testing and publish workflows pinned Node 22.17.1; bump to the current latest 22.x maintenance release (22.23.1). Node 22 is in Maintenance LTS (supported to 2027-04-30), so this stays on a supported line and picks up the security/critical fixes since 22.17.1.
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.
What
Silences the "Node.js 20 is deprecated" warning on the Actions runner, and refreshes the pinned Node.
node24 action runtimes
Three actions still run on the node20 action runtime, which GitHub is deprecating in favour of node24. Bumped each to the major that runs on node24:
actions/checkoutv4 → v5actions/setup-nodev4 → v5cypress-io/github-actionv6 → v7Verified via each
action.ymlthat@v6Cypress isusing: node20while@v7isnode24.cypress-io/github-action@v7.0.0's only breaking change is that runtime bump, so thebuild/start/browserinputs are unaffected.node-version
actions/setup-node's pinned Node bumped 22.17.1 → 22.23.1 (current latest 22.x) in testing + publish. Node 22 is in Maintenance LTS (supported to 2027-04-30), so this stays on a supported line and picks up security/critical fixes.Not changed
enginesfield inpackage.json, so nothing to change there.No application behaviour change — CI configuration only.
Note
This lands on
master; the warning will persist on CI for branches that haven't picked it up yet (e.g. the in-flight231-display-lcms-datastack) until it propagates down.