Bump docs and release workflows to Node 24 action majors - #19
Merged
Conversation
GitHub deprecated Node 20 on Actions runners, so runs using checkout@v4, setup-dotnet@v4, upload-artifact@v4, upload-pages-artifact@v3, and deploy-pages@v4 emit deprecation annotations. Bump to the Node 24 majors (checkout@v7, setup-dotnet@v6, upload-artifact@v7, upload-pages-artifact@v5, deploy-pages@v5), matching the bumps already applied to ci.yml. deploy-pages@v5 resolves artifacts by name like v3 did, so the existing pages/id-token permissions still suffice. upload-pages-artifact@v5 excludes dotfiles by default, which is inert here: DocFX emits none the site needs and Actions-based Pages deploys skip Jekyll. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
lgamorim
force-pushed
the
feature/workflows-node24-actions
branch
from
August 13, 2026 14:46
13a7564 to
724fd0c
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 deprecated Node 20 on Actions runners, so
docs.ymlandrelease.ymlruns emit deprecation annotations for their Node 20-based actions. PR #18 already bumpedci.yml; this applies the same treatment to the remaining two workflows.What
Both workflows:
actions/checkoutv4 → v7actions/setup-dotnetv4 → v6release.yml:actions/upload-artifactv4 → v7docs.yml:actions/upload-pages-artifactv3 → v5actions/deploy-pagesv4 → v5Breaking-change review for the Pages actions
artifact_name(defaultgithub-pages), the same mechanism as v3 — it does not use v4's artifact-ID lookup, so the workflow's existingpages: write+id-token: writepermissions remain sufficient. No inputs we rely on changed;page_urloutput is unchanged.include-hidden-files: false). That is inert for this repo: Actions-based Pages deployments skip Jekyll (no.nojekyllneeded) and DocFX emits no dotfiles the site depends on, so the default is left as-is.Verification
These workflows only trigger on pushes to
master/v*.*.*tags / manual dispatch, so they can't run green on this PR. Verification is limited to the changes matching the already-greenci.ymlbumps plus the release-notes review above; the first post-merge master push will exercisedocs.yml.🤖 Generated with Claude Code