ci: Upgrade GitHub Actions to Node.js 24-compatible versions#244
Merged
Conversation
- actions/checkout: v3/v4 (node16/node20) → v6.0.3 (node24) - actions/setup-node: v3 (node16) → v6.4.0 (node24) - crazy-max/ghaction-github-pages: v4 (node20) → v5.0.0 (node24) - Add FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true for CI validation Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Coverage Report for CI Build 26912798711Coverage remained the same at 97.987%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
mroman-recurly
approved these changes
Jun 4, 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.
Description
Problem
GitHub Actions is deprecating Node.js 20 as a runtime for JavaScript actions. Actions using Node.js 16 or Node.js 20 will be forced to run under Node.js 24 starting June 2026, with full removal of Node.js 20 in September 2026. Running outdated action versions after that date risks broken CI.
Fix
Upgraded all affected GitHub Actions in this repository to their latest Node.js 24-compatible versions, verified by inspecting each action's
action.ymlat the target tag.actions/checkoutv3/v4v6.0.3actions/setup-nodev3v6.4.0crazy-max/ghaction-github-pagesv4v5.0.0Actions left unchanged (not affected):
stefanoeb/eslint-action@1.0.2— Docker action, unaffected by Node.js deprecationcoverallsapp/github-action@v2— composite action using pure shell scripts, no JS runtime dependencyThe
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: trueenvironment variable has been added to all modified workflow files for CI validation. It will be removed in a follow-up commit before merge.Files Changed
.github/workflows/ci.yml— upgradedactions/checkoutv3 → v6.0.3; added FORCE flag.github/workflows/docs.yml— upgradedactions/checkoutv4 → v6.0.3,actions/setup-nodev3 → v6.4.0,crazy-max/ghaction-github-pagesv4 → v5.0.0; added FORCE flag.github/workflows/eslint.yml— upgradedactions/checkoutv3 → v6.0.3Testing
CI runs with
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: trueto verify all actions execute correctly under Node.js 24.