Bump GitHub Actions still on Node.js 20 to their Node.js 24 releases - #20
Draft
mullinmax wants to merge 2 commits into
Draft
Bump GitHub Actions still on Node.js 20 to their Node.js 24 releases#20mullinmax wants to merge 2 commits into
mullinmax wants to merge 2 commits into
Conversation
actions/upload-artifact, actions/download-artifact, actions/upload-pages-artifact, actions/deploy-pages, and marocchino/sticky-pull-request-comment were pinned to versions whose action.yml still declares node20, which GitHub Actions now forces onto the node24 runtime with a deprecation warning. Bump each to its latest major release, which targets node24 natively, with no input changes required. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014V6NgPCMwFMca1pavBd8Zy
Coverage report✅ Total coverage: 100.00% (0.00% vs base |
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014V6NgPCMwFMca1pavBd8Zy
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
GitHub Actions runners now force actions whose
action.ymlstill declaresusing: node20onto the Node.js 24 runtime and emit a deprecation warning (as seen in thepublishworkflow'sactions/download-artifact@v4step). I checked every third-party action referenced across.github/workflows/*.ymlagainst its actualaction.ymlruntime declaration and bumped the ones still onnode20to their latest major release, which targetsnode24natively:actions/upload-artifactv4→v7(ci.yml, publish.yml)actions/download-artifactv4→v8(publish.yml)actions/upload-pages-artifactv3→v5(docs.yml)actions/deploy-pagesv4→v5(docs.yml)marocchino/sticky-pull-request-commentv2→v3(ci.yml)actions/checkout@v5,actions/setup-python@v6, andpypa/gh-action-pypi-publish@release/v1were already verified to run onnode24(or, for the latter, track a moving branch), so they're left unchanged.I confirmed each bumped action's
name/path(andheader/pathfor the sticky comment action) inputs are unchanged between the old and new major versions, so no other workflow changes were needed.Test plan
ci.yml) runs green on this PRdocsworkflow builds and deploys successfullypublishworkflow run no longer emits the Node.js 20 deprecation warning🤖 Generated with Claude Code
https://claude.ai/code/session_014V6NgPCMwFMca1pavBd8Zy
Generated by Claude Code