Update GitHub Actions to use latest versions#114
Merged
martinlackner merged 2 commits intomasterfrom May 6, 2026
Merged
Conversation
actions/checkout@v4 and actions/setup-python@v5 were running on Node.js 20, which is deprecated and will be removed from runners on September 16, 2026. Sets FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true in all workflow files to use Node.js 24 now. https://claude.ai/code/session_015Br4Cbh2KgdTKYHjAgKsjV
Both v6 releases use Node.js 24 natively, resolving the Node.js 20 deprecation warnings. Node.js 20 will be removed from runners on September 16, 2026. https://claude.ai/code/session_015Br4Cbh2KgdTKYHjAgKsjV
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #114 +/- ##
=======================================
Coverage 89.33% 89.33%
=======================================
Files 12 12
Lines 3563 3563
Branches 859 859
=======================================
Hits 3183 3183
Misses 257 257
Partials 123 123 Continue to review 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.
Summary
This pull request updates GitHub Actions workflow files to use the latest versions of commonly used actions across all CI/CD pipelines.
Key Changes
Updated
actions/checkoutfrom v4 to v6 across all workflow files:.github/workflows/build.yml.github/workflows/piptest.yml.github/workflows/piptestfull.yml.github/workflows/unittests.yml.github/workflows/deploy-benchmark-dashboard.ymlUpdated
actions/setup-pythonfrom v5 to v6 across all workflow files:.github/workflows/build.yml.github/workflows/piptest.yml.github/workflows/piptestfull.yml.github/workflows/unittests.ymlDetails
These updates ensure that all CI/CD pipelines benefit from the latest features, bug fixes, and security improvements provided by the GitHub Actions team. The changes are applied consistently across all workflow files to maintain uniformity in the CI/CD infrastructure.
https://claude.ai/code/session_015Br4Cbh2KgdTKYHjAgKsjV