chore(ci): update GitHub Actions to Node.js 24 compatible versions#15110
Merged
Conversation
Co-Authored-By: David Konigsberg <davidakonigsberg@gmail.com>
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.
Tip: disable this comment in your organization's Code Review settings.
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
🌱 Seed Test SelectorSelect languages to run seed tests for:
How to use: Click the ⋯ menu above → "Edit" → check the boxes you want → click "Update comment". Tests will run automatically and snapshots will be committed to this PR. |
fern-support
approved these changes
Apr 17, 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
Addresses the Node.js 20 deprecation warnings surfaced in this CI run. GitHub is forcing JavaScript actions onto Node 24 on June 2, 2026, and Node 20 reaches EOL in April 2026 — this PR bumps every action in
.github/that has a Node 24–compatible release available.Changes Made
Bumped the following actions across
.github/workflows/*.ymland.github/actions/cached-seed/action.yaml:actions/cache@v4→@v5actions/checkout@v4→@v6(inrelease-software.yml)actions/upload-artifact@v4→@v6actions/download-artifact@v4→@v7docker/login-action@v3→@v4softprops/action-gh-release@v2→@v3Files touched:
ci.yml,ci-dynamic-snippets.yml,benchmark-baseline.yml,seed.yml,cli-release.yml,publish-snippets-core.yml,release-software.yml,test-definitions.yml,update-test.yml,cached-seed/action.yaml.Actions intentionally not bumped
These actions are still in use but have no Node 24 release yet, so their deprecation warnings will persist until upstream ships an update:
bufbuild/buf-setup-action@v1.50.0(latest, still node20)crs-k/stale-branches@v8.2.2(latest, still node20)tj-actions/changed-files@v47is already on Node 24 (migrated in v47.0.0), so no change needed there.Review checklist
upload-artifactv4→v6,download-artifactv4→v7,cachev4→v5,checkoutv4→v6,docker/login-actionv3→v4,softprops/action-gh-releasev2→v3 are all major bumps. Confirm no breaking input/output changes affect our usage. Notably,upload-artifactv5+ produces immutable artifacts; matched withdownload-artifact@v7they should interop correctly.update-test.ymlusesruns-on: Test. Node 24 requires Actions Runner ≥ 2.327.1 — confirm the self-hosted runner is updated (GitHub-hosted runners are fine).Link to Devin session: https://app.devin.ai/sessions/b24269a1f97f43f9ae84b9029af20dd9
Requested by: @davidkonigsberg