Update GitHub Actions to Node 24 versions#2
Merged
Conversation
Fixes the Node.js 20 deprecation warnings by bumping checkout to v6, setup-python to v6, upload-artifact to v7, download-artifact to v8, configure-pages to v6, upload-pages-artifact to v5, and deploy-pages to v5. All verified to declare runs.using: node24 (upload-pages-artifact v5 is a composite that calls upload-artifact v7). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YXFsv1PV9wVWGgwXGz2guJ
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
Fixes the three Node.js 20 deprecation warnings from the last CI run (GitHub changelog) by bumping every action in
build.ymlto a release that targets Node 24:actions/checkoutactions/setup-pythonactions/upload-artifactactions/download-artifactactions/configure-pagesactions/upload-pages-artifactactions/deploy-pagesNotes
runs.using: node24in itsaction.yml(not taken from release-notes summaries).checkoutis bumped to v6, not v7 — v7 adds a new restriction on checking out fork pull requests, which shouldn't be adopted as a side effect of a warning fix.upload-pages-artifact@v5is included even though it wasn't named in the warnings: it's a composite that internally callsupload-artifact, and v5 pins the Node 24upload-artifact@v7.0.0— that's what clears theupload-artifact@v4warning in the deploy job.issue-manager.ymlis untouched; it only uses a third-party action and produced no warnings.🤖 Generated with Claude Code
https://claude.ai/code/session_01YXFsv1PV9wVWGgwXGz2guJ
Generated by Claude Code