diff --git a/pkg/cmd/attestation/verify/verify_integration_test.go b/pkg/cmd/attestation/verify/verify_integration_test.go index 4b0f0adfb..3a9a8185f 100644 --- a/pkg/cmd/attestation/verify/verify_integration_test.go +++ b/pkg/cmd/attestation/verify/verify_integration_test.go @@ -40,6 +40,7 @@ func TestVerifyIntegration(t *testing.T) { OCIClient: oci.NewLiveClient(), OIDCIssuer: verification.GitHubOIDCIssuer, Owner: "sigstore", + PredicateType: verification.SLSAPredicateType, SANRegex: "^https://github.com/sigstore/", SigstoreVerifier: verification.NewLiveSigstoreVerifier(sigstoreConfig), } @@ -112,6 +113,7 @@ func TestVerifyIntegrationCustomIssuer(t *testing.T) { Logger: logger, OCIClient: oci.NewLiveClient(), OIDCIssuer: "https://token.actions.githubusercontent.com/hammer-time", + PredicateType: verification.SLSAPredicateType, SigstoreVerifier: verification.NewLiveSigstoreVerifier(sigstoreConfig), } @@ -181,6 +183,7 @@ func TestVerifyIntegrationReusableWorkflow(t *testing.T) { Logger: logger, OCIClient: oci.NewLiveClient(), OIDCIssuer: verification.GitHubOIDCIssuer, + PredicateType: verification.SLSAPredicateType, SigstoreVerifier: verification.NewLiveSigstoreVerifier(sigstoreConfig), } @@ -271,6 +274,7 @@ func TestVerifyIntegrationReusableWorkflowSignerWorkflow(t *testing.T) { OCIClient: oci.NewLiveClient(), OIDCIssuer: verification.GitHubOIDCIssuer, Owner: "malancas", + PredicateType: verification.SLSAPredicateType, Repo: "malancas/attest-demo", SigstoreVerifier: verification.NewLiveSigstoreVerifier(sigstoreConfig), }