Updated to use Node 24#48
Merged
tarcieri merged 1 commit intorustsec:masterfrom Mar 20, 2026
Merged
Conversation
tolgakaratas
added a commit
to Denomas/clone
that referenced
this pull request
May 7, 2026
GitHub still warned 'Node.js 20 actions are deprecated' for two
actions whose v-major refs lag behind their actual Node 24 work:
* rustsec/audit-check@v2 — upstream merged the Node 24 bump
(rustsec/audit-check#48, master commit 858dc40f, 2026-03-20)
but has not cut a v2.x.x release yet, so the v2 floating ref
still points at v2.0.0 (2024-09-23) which ships Node 20.
Pin to the master commit SHA. The pin is documented inline so
the next maintainer (or dependabot) knows to drop it once a
real release lands. Same pin in both build.yml and
security-scan.yml.
* github/codeql-action — v3.x.x is the legacy Node 20 series;
the maintainer publishes v4.x.x in parallel and the v4 line
runs on Node 24 (verified against init/action.yml on tag
v4.35.4). Bump init/autobuild/analyze from @V3 to @v4 in
security-scan.yml.
Verified with actionlint v1.7.7 — both files lint clean. After
this push the only remaining 'Node 20' warnings would be from
actions whose latest tag itself ships Node 20 (none in our tree
as of 2026-05-07).
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.
Resolves #47
Tested against my own repo - worked fine. (warning doesn't appear).
I used AI to apply this change.