-
Notifications
You must be signed in to change notification settings - Fork 499
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
Use cosgin instead of gpg to sign scorecard releases #1126
Labels
kind/enhancement
New feature or request
Comments
@dlorenc @developer-guy WDTY? |
thank you for mentioning me @naveensrinivasan, looks yummy 😋. I don't have much knowledge about |
If you agree to continue with the GoReleaser option, you can assign this issue to me. I would love to do that. 🤩 |
let me share few examples: |
Duplicate of #1201. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
The
goreleaser
right now uses thegpg
key to sign scorecard releases.Describe the solution you'd like
Instead, use cosign to sign scorecard GitHub releases (not signing the container)
Keyless signing
Change that to use
cosign
to sign theblob
COSIGN_EXPERIMENTAL=1 cosign sign-blob <FILE>
with the above option we don't have to hold the keys and we could use GitHub OIDC to keyless signing https://github.com/lukehinds/testoidc/blob/d36ee33f2b2662ea27034aacd63f2e8ee04b73c3/.github/workflows/keyless-sign.yml#L12Part of this means moving away from
goreleaser
.goreleaser
supportscosgin
but it doesn't provide an option tokeyless
Use goreleaser
The other option is to use
goreleaser
but instead, usecosign
keys similar togpg
keys and generate them using something likecosign generate-key-pair github://owner/project
and keep the password forcosign
asGitHub secret
The text was updated successfully, but these errors were encountered: