ci: pin sigstore/cosign-installer to v4.1.2 (no floating v4 tag exists) - #20
Merged
Merged
Conversation
The action publishes exact tags only and never created a floating v4 tag (v3 exists, v4 does not), so @v4 fails to resolve and the release workflow cannot start. Its README pins the exact version; Dependabot keeps an exact pin current. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
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.
The release workflow fails at resolution time with:
Cause.
sigstore/cosign-installerpublishes exact tags (v4.0.0…v4.1.2) and a floatingv3, but never created a floatingv4. Verified withgit ls-remote --tags:v4missing,v3andv4.1.2present. The action’s README pinsv4.1.0exactly. My action-pin bump in #15 assumed a floating major tag like the other actions have.Fix. Pin
sigstore/cosign-installer@v4.1.2. Dependabot (enabled forgithub-actions) bumps exact pins, so this stays current.All other pins were verified to resolve: checkout v7, setup-go v7, upload-artifact v7, download-artifact v8, action-gh-release v3, codeql-action v4.
Needed before tagging v0.2.0; the release workflow would otherwise not run.
🤖 Generated with Claude Code