diff --git a/verifiers/internal/gha/provenance.go b/verifiers/internal/gha/provenance.go index ff3d47fb..4a5cae23 100644 --- a/verifiers/internal/gha/provenance.go +++ b/verifiers/internal/gha/provenance.go @@ -330,6 +330,13 @@ func isValidDelegatorBuilderID(prov iface.Provenance) error { } } + // Exception for slsa-framework/slsa-github-generator branches during testing mode + // to allow provenance from non-main to be verified, such as during development. + normalizedSLSAGithubGeneratorRepoURI := utils.NormalizeGitURI(httpsGithubCom + trustedBuilderRepository) + if options.TestingEnabled() && normalizedURI == utils.NormalizeGitURI(normalizedSLSAGithubGeneratorRepoURI) { + return nil + } + return utils.IsValidBuilderTag(builderRef, false) } diff --git a/verifiers/internal/gha/provenance_test.go b/verifiers/internal/gha/provenance_test.go index 878dcd07..dd1dd4e4 100644 --- a/verifiers/internal/gha/provenance_test.go +++ b/verifiers/internal/gha/provenance_test.go @@ -471,6 +471,18 @@ func Test_isValidDelegatorBuilderID(t *testing.T) { builderID: "some/builderID@refs/heads/main", testingEnabled: true, }, + { + name: "invalid builder: ref slsa-github-generator repo: testing enabled", + sourceURI: gitPrefix + httpsGithubCom + "slsa-framework/slsa-github-generator", + builderID: "some/builderID@refs/heads/anybranch", + testingEnabled: true, + }, + { + name: "invalid builder: ref slsa-github-generator repo: testing disabled", + sourceURI: gitPrefix + httpsGithubCom + "slsa-framework/slsa-github-generator", + builderID: "some/builderID@refs/heads/anybranch", + err: serrors.ErrorInvalidRef, + }, { name: "invalid builder ref e2e repo", sourceURI: gitPrefix + httpsGithubCom + e2eTestRepository,