ci: bump GitHub Actions to Node 24-compatible major versions#71
Open
malteos wants to merge 1 commit into
Open
Conversation
GitHub will force-migrate actions off the deprecated Node.js 20 runtime on 2026-06-16. Bump all actions/* to their current Node 24-based majors: - actions/checkout v4 -> v6 - actions/setup-python v5 -> v6 - actions/upload-artifact v4 -> v7 - actions/download-artifact v4 -> v8 - actions/github-script v7 -> v9
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #71 +/- ##
=======================================
Coverage 97.24% 97.24%
=======================================
Files 9 9
Lines 943 943
=======================================
Hits 917 917
Misses 26 26 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Why
GitHub is deprecating the Node.js 20 runtime for actions and will force-migrate to Node 24 on 2026-06-16 (Node 20 removed from runners 2026-09-16). Several of our workflows pin
actions/*at majors that still run on Node 20, which currently produces deprecation annotations (e.g. on the recent publish run) and will break once the migration is forced.What
Bump all
actions/*to their current Node 24-based major versions across every workflow:actions/checkoutactions/setup-pythonactions/upload-artifactactions/download-artifactactions/github-scriptFiles touched:
ci.yaml,ci-slow.yaml,cc-server-check.yaml,publish_pypi.yaml.pypa/gh-action-pypi-publish@release/v1is unaffected (separate publisher, already on a maintained branch).Notes
upload-artifact@v7anddownload-artifact@v8share the same v4+ artifact backend, so the upload-in-bump-and-build/ download-in-later-jobs flow inpublish_pypi.yamlremains compatible.ci.yamlwill exercise checkout/setup-python/github-script on this PR.