Fix GitHub Actions Node.js deprecation warning#14
Merged
Conversation
Agent-Logs-Url: https://github.com/mlutonsky/utils/sessions/dbbf9bf9-7a84-405c-8791-1563e308ce70 Co-authored-by: mlutonsky <423848+mlutonsky@users.noreply.github.com>
Claude created this pull request from a session on behalf of
mlutonsky
June 6, 2026 19:17
View session
There was a problem hiding this comment.
Pull request overview
Updates the ShellCheck GitHub Actions workflow to use a newer actions/checkout major version, aligning with GitHub Actions’ Node.js runtime deprecation messaging and avoiding the Node.js 20 warning.
Changes:
- Updated
actions/checkoutfrom@v4to@v5in the ShellCheck workflow.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
Updates
actions/checkoutfrom v4 to v5 to resolve the Node.js 20 deprecation warning in GitHub Actions.Changes
actions/checkout@v4toactions/checkout@v5in the ShellCheck workflowContext
GitHub Actions is deprecating Node.js 20, and
actions/checkout@v4runs on Node.js 20. The v5 version supports Node.js 24, which resolves the deprecation warning: