Sync main with master - #232
Merged
Merged
Conversation
A commit-SHA pin fixes the action's revision, not the dependency closure that revision installs. At the pinned revision the action resolves its Python environment from a requirements file constraining only sigstore ~= 3.0 and requests ~= 2.28, without hashes, so the transitive closure is recomputed against the package index on every invocation. Pinning more strictly does not narrow it, because the unconstrained resolution is a property of the pinned code rather than of the reference that selects it. securesystemslib 1.5.0 declares its cryptography 48 requirement through an extra that the tuf to sigstore chain does not select, so the resolver admits that release alongside an earlier cryptography. Signature verification degrades without raising, and the TUF trust root verifies against 0 of 3 keys. The failure is confined to the signing step and precedes any artifact read, so the surrounding jobs complete: distributions build, the GitHub release is created, and the PyPI upload succeeds. A release reaches both channels carrying no sigstore bundles, and no job reports a failure. Revision v3.5.0 installs from a requirements file pinning 31 distributions by exact version under sha256 hashes, among them sigstore 4.5.0, cryptography 49.0.0, securesystemslib 1.4.0 and tuf 7.0.0. The closure is fixed at the revision rather than at the index, so no subsequent upload can perturb it. The interface is unchanged. v3.5.0 declares a strict superset of v3.0.0's inputs and removes none, and the single input this action passes is identical.
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.
Auto-generated by the sync branches workflow.