-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): update sigstore action from @v3 to @v3.3.0 #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -298,7 +298,7 @@ jobs: | |
| path: dist/ | ||
|
|
||
| - name: Sign distributions with Sigstore | ||
| uses: sigstore/gh-action-sigstore-python@v3 | ||
| uses: sigstore/gh-action-sigstore-python@v3.3.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π¨ suggestion (security): Consider pinning the Sigstore action to a commit SHA for stronger supply-chain guarantees. Pinning to Suggested implementation: Replace
|
||
| with: | ||
| inputs: >- | ||
| ./dist/*.tar.gz | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
.github/workflows/release-homebrew.yml, this step now runsbrew tap ... "$(pwd)/homebrew-tap"and then installs from the tap before the formula update is committed.brew tap <user>/<repo> <URL>clones the repo at that URL, so the tapped copy does not include the uncommitted edits made in the previousawkupdate step. As a result, the install test can succeed against the old committed formula while the newly generatedFormula/macversiontracker.rb(new version/SHA) is never validated and may be pushed broken.Useful? React with πΒ / π.