chore: bump CI actions to Node.js 24 compatible versions#4438
Merged
Conversation
- actions/checkout v4 → v5 - actions/github-script v7 → v8 - actions/setup-node v4 → v5 - actions/upload-artifact v4 → v5 - peter-evans/create-pull-request v7 → v8 - tj-actions/changed-files v41 → v47 Co-Authored-By: David Konigsberg <davidakonigsberg@gmail.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
|
🌿 Preview your docs: https://fern-preview-devin-1774008317-bump-ci-actions.docs.buildwithfern.com/learn |
fern-support
approved these changes
Mar 20, 2026
v5 was preliminary Node.js 24 support but still defaulted to Node.js 20. v6 is the actual Node.js 24 version. Co-Authored-By: David Konigsberg <davidakonigsberg@gmail.com>
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.
Summary
Bumps all external GitHub Actions to their latest Node.js 24-compatible major versions to address Node.js 20 deprecation warnings. Version-only changes across 8 workflow files — no workflow logic modified.
actions/checkoutactions/github-scriptactions/setup-nodeactions/upload-artifactpeter-evans/create-pull-requesttj-actions/changed-filesActions left as-is (no newer major version or already current):
actions/stale@v10,errata-ai/vale-action@reviewdog,fern-api/setup-fern-cli@v1,lycheeverse/lychee-action@v2,peter-evans/enable-pull-request-automerge@v3,thollander/actions-comment-pull-request@v2.4.3Breaking Change Audit
actions/checkoutv4→v5: Node.js 24 runtime only. Inputs used (fetch-depth,token) unchanged. v6 was intentionally skipped — it changes credential persistence behavior and can break docker actions. ✔ Safe.actions/github-scriptv7→v8: Node.js 24 runtime only. Inputs used (github-token,script) unchanged. ✔ Safe.actions/setup-nodev4→v5: Auto-caching breaking change exists, but this repo has nopackageManagerfield inpackage.json, so it does not apply. Thefern-scribe.ymlworkflow explicitly setscache: 'npm'which is still supported. ✔ Safe.actions/upload-artifactv4→v6: v5 was preliminary Node.js 24 support (still defaulted to Node.js 20); v6 is the full Node.js 24 version. Inputs used (name,path,if-no-files-found) unchanged across both versions. ✔ Safe.peter-evans/create-pull-requestv7→v8: Node.js 24 runtime only. Inputs used (base,branch,commit-message,delete-branch,title) unchanged. ✔ Safe.tj-actions/changed-filesv41→v47: v42 changed directory-trailing-slash matching behavior; v43 changedany_changeddefault when no patterns specified. Our usage only passesfileswith glob patterns (no trailing slashes, no reliance onany_changeddefaults), so neither breaking change applies. ✔ Safe.Review & Testing Checklist for Human
tj-actions/changed-filesv41→v47 doesn't change output behavior for thevale.ymlworkflow — we only use thefilesinput with glob patterns; confirm the filtered file list output format is unchangedactions/upload-artifactv4→v6 (skipping v5) works correctly for thecheck-links.ymlartifact uploads (urls,lychee-report,lychee-outputs)check-links.ymlandvale.ymlto confirm they work as expectedNotes
upload-artifactwas bumped directly from v4 to v6 (not v5). v5 was a preliminary Node.js 24 release that still defaulted to Node.js 20; v6 is the proper Node.js 24 version.packageManagerfield inpackage.json, so theactions/setup-node@v5auto-caching breaking change does not apply here.Link to Devin session: https://app.devin.ai/sessions/3838526ec6224c6b9dc01df9ed56530e
Requested by: @davidkonigsberg