ci: bump actions to node24 majors, silence Node 20 deprecation warnings - #1426
Merged
Conversation
checkout v5, setup-python v6, setup-uv v7, cache v5, upload-artifact v6, download-artifact v7, docker actions v4, codecov v5, create-github-app-token v3. Also drop a trailing space from the validate-codecov-config workflow filename. Assisted-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Sergey Vilgelm <sergey@union.ai>
setup-uv is pinned to v10.0.0 because it stopped publishing moving major tags after v7. Assisted-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Sergey Vilgelm <sergey@union.ai>
pingsutw
approved these changes
Aug 13, 2026
SVilgelm
added a commit
that referenced
this pull request
Aug 13, 2026
The validate-codecov-config workflow fails on every push to main since #1426 because it validates a `codecov.yaml` that does not exist in this repo — the curl sends an empty body and codecov.io returns 400. It had never run before: the workflow file's name contained a trailing space (`validate-codecov-config.yml `), which kept GitHub from picking it up, so the missing config was never noticed. The rename in #1426 surfaced it. Coverage uploads in tests.yml use codecov's default configuration, so there is nothing to validate. If a `codecov.yaml` is added later, the workflow can come back alongside it. Signed-off-by: Sergey Vilgelm <sergey@union.ai>
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.
GitHub Actions runs are full of "Node.js 20 is deprecated" annotations (e.g. every PyPI-package job in the Publish workflow) because several pinned action majors still target node20, which runners now force onto node24 and will eventually drop.
Bumps every action in the repo to its latest major (all node24): checkout v7, setup-python v7 (was v1/v4/v5), setup-uv v10.0.0 (exact pin — the action stopped publishing moving major tags after v7), cache v6, upload-artifact v7, download-artifact v8, docker login/buildx/qemu v4, codecov v7, create-github-app-token v3.
Verified against each action's release notes: no removed inputs are used (setup-uv dropped
server-url, setup-python droppedpip-install), nopull_request_target/workflow_runtriggers exist (checkout v7 blocks fork-PR checkout there), and download-artifact v8's digest-mismatch=error default only affects corrupted downloads. setup-uv v9/v10 cache-default changes don't apply since no sensitive events are used.Also renames
validate-codecov-config.ymlto drop a trailing space in the filename that was hiding it from tooling globs.