Bump CI actions to Node 24 majors to clear runner deprecation warning - #18
Merged
Conversation
GitHub Actions runners deprecated Node 20 and annotate every run that uses a node20 action. checkout v4, setup-dotnet v4, and upload-artifact v4 all run on node20, so bump each to its current major: - actions/checkout v4 -> v7 (Node 24 since v5; v6/v7 changes do not affect this workflow's usage) - actions/setup-dotnet v4 -> v6 (Node 24 since v5; global.json's fully-qualified sdk.version satisfies the stricter v5.4 validation) - actions/upload-artifact v4 -> v7 (Node 24 default since v6; the name/path inputs used here are unchanged) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
lgamorim
force-pushed
the
feature/ci-node24-actions
branch
from
August 13, 2026 14:46
acaa8bc to
16440e4
Compare
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.
@
Why
GitHub Actions runners have deprecated Node 20 and annotate every run that uses a node20-based action (changelog).
ci.ymlusedactions/checkout@v4,actions/setup-dotnet@v4, andactions/upload-artifact@v4, all of which run on Node 20.What
Bump each action in
ci.ymlto its current major, all running on Node 24:actions/checkoutv4 → v7 — Node 24 since v5; v6 persists credentials to a separate file and v7 blocks fork-PR checkout forpull_request_target/workflow_runtriggers, neither of which affects this workflow.actions/setup-dotnetv4 → v6 — Node 24 since v5; v5.4 validates thatglobal.jsonhas a fully-qualifiedsdk.versionwhenrollForwardis set, which ours (10.0.301) satisfies. v6 is an internal ESM migration.actions/upload-artifactv4 → v7 — defaults to Node 24 since v6; v7 adds an optionalarchiveinput. Thename/pathinputs used here are unchanged.No inputs or behavior used by this workflow changed across these majors.
docs.ymlandrelease.ymlstill reference the v4 actions (anddocs.ymlalso uses node20-basedupload-pages-artifact@v3); left out of scope to keep this change focused.🤖 Generated with Claude Code
@