Upgrade CI action runtimes and remove broken coverage upload - #35
Merged
Conversation
JovaniPink
marked this pull request as ready for review
August 8, 2026 19:11
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
actions/checkoutandactions/setup-pythonto their v7 Node-runtime releases across pull-request, release, and release-preflight workflowsWhy
The previous workflow appeared green while Codecov logged
Token required - not valid tokenless upload; the action's default behavior swallowed the error. A hosted trial of OIDC on commitb5f4023successfully issued an identity token and foundcoverage.xml, but Codecov returnedRepository not found, confirming that the external integration is not configured for this repository.The test suite already enforces the 90% coverage floor. Removing the broken upload makes CI honest and removes an unnecessary external dependency instead of adding a long-lived secret or preserving a permanently failing step.
Scope and non-scope
This changes CI action runtimes and removes a broken coverage publishing step. It does not change the xstate runtime API, SCXML behavior, package version, release trigger, or PyPI credentials. No release or publication was triggered.
Local validation
poetry check --lock: cleangit diff --check: cleanHosted acceptance gate
Merge only if all four checks on exact head
c3de600are green and GitHub reports no deprecated Node runtime annotation.Risk and rollback
The repository will no longer publish coverage to Codecov. The enforced 90% pull-request threshold remains in the primary test command, so this does not weaken acceptance. Rollback is a revert of these two commits; no application or package state is mutated.
Review focus