From e1c282bb48def7ecbb24f7e37e20482ccb257fec Mon Sep 17 00:00:00 2001 From: Miguel Martinez Trivino Date: Sun, 5 Jul 2026 18:38:58 +0200 Subject: [PATCH] fix(ci): align secrets-scan material name with contract The secrets-detection contract (revision 5) expects a material named "secret-report", but the workflow was adding it as "gitleaks-scan", causing the attestation push to fail with "some materials have not been crafted yet: secret-report". Rename the material in the workflow to match the contract. Signed-off-by: Miguel Martinez Trivino --- .github/workflows/secrets-scan-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/secrets-scan-daily.yml b/.github/workflows/secrets-scan-daily.yml index 547033e4c..6f677b897 100644 --- a/.github/workflows/secrets-scan-daily.yml +++ b/.github/workflows/secrets-scan-daily.yml @@ -50,7 +50,7 @@ jobs: - name: Add Gitleaks Report to Attestation run: | chainloop attestation add \ - --name gitleaks-scan \ + --name secret-report \ --value gitleaks-report.json \ --kind GITLEAKS_JSON