Skip to content

Commit 9a49596

Browse files
committed
fix: correct repo ref
1 parent 8fc72c5 commit 9a49596

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/sigstore.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,9 @@ jobs:
3434
# Obtain the digest from this tag
3535
DIGEST=$(curl "https://hub.docker.com/v2/repositories/snyk/snyk-universal-broker/tags/${LATEST_TAG}" | jq '.digest' -r)
3636
# Sign the image, using GitHub as an OIDC provider
37-
cosign sign --yes snyk/snyk-universal-broker-helm@${DIGEST}
38-
cosign sign --yes snyk/snyk-universal-broker-helm:${LATEST_TAG}
37+
cosign sign --yes snyk/snyk-universal-broker@${DIGEST}
38+
cosign sign --yes snyk/snyk-universal-broker:${LATEST_TAG}
3939
- name: Verify signature
4040
run: |
41-
cosign verify \
42-
snyk/snyk-universal-broker-helm@${DIGEST} \
43-
--certificate-identity-regexp="https://github.com/snyk/snyk-universal-broker-helm/.*" \
44-
--certificate-oidc-issuer="https://token.actions.githubusercontent.com"
45-
cosign verify \
46-
snyk/snyk-universal-broker-helm:${LATEST_TAG} \
47-
--certificate-identity-regexp="https://github.com/snyk/snyk-universal-broker-helm/.*" \
48-
--certificate-oidc-issuer="https://token.actions.githubusercontent.com"
41+
cosign verify snyk/snyk-universal-broker@${DIGEST} --certificate-identity-regexp="https://github.com/snyk/snyk-universal-broker-helm/.*" --certificate-oidc-issuer="https://token.actions.githubusercontent.com"
42+
cosign verify snyk/snyk-universal-broker:${LATEST_TAG} --certificate-identity-regexp="https://github.com/snyk/snyk-universal-broker-helm/.*" --certificate-oidc-issuer="https://token.actions.githubusercontent.com"

0 commit comments

Comments
 (0)