Fix Node 20 deprecation#72
Open
evsok wants to merge 1 commit into
Open
Conversation
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.
Fix Node 20 deprecation in github-sync CI workflows
Summary
GitHub is retiring the Node 20 action runtime; actions bundling a Node 20 (or older) entrypoint emit deprecation warnings today and will eventually stop running. This PR bumps the one affected action in this repo's CI.
Changes
actions/checkout@v1@v5Files touched:
.github/workflows/linter.yml,test.yml. (checkout@v1is node12-era, so it was already emitting deprecation warnings.)Not applicable / out of scope
action.yml) is a Docker container action (runs.using: docker), so it is not subject to the Node runtime deprecation — no change needed there.azohra/shell-linter@latest— Docker container action, unaffected../(uses the local Docker action for a self-test) — unaffected.Verification
Confirmed via the pinned
action.yml(runs.using:):checkout@v1→ node12;@v5→ node24Diff is version strings only, no other edits.
Runner requirement
Both jobs run on
ubuntu-latest(GitHub-hosted), which already supports the Node 24 runtime — no runner action needed.Testing