You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
errExceededMaxVerificationLimit:=ErrorVerificationFailed{Msg: fmt.Sprintf("total number of signatures associated with an artifact should be less than: %d", opts.MaxSignatureAttempts)}
// If there's no signature associated with the reference
218
-
iflen(verificationOutcomes)==0 {
218
+
ifnumOfSignatureProcessed==0 {
219
219
return ocispec.Descriptor{}, nil, ErrorSignatureRetrievalFailed{Msg: fmt.Sprintf("no signature is associated with %q, make sure the image was signed successfully", artifactRef)}
220
220
}
221
221
222
-
// check whether verification was successful or not
0 commit comments