From c4540ee81d9a890c60068e8600eeb9cf984ce7d3 Mon Sep 17 00:00:00 2001 From: Miguel Martinez Trivino Date: Mon, 31 Jul 2023 09:56:16 +0200 Subject: [PATCH] chore(ci): update Chainloop contract Signed-off-by: Miguel Martinez Trivino --- .github/workflows/contracts/releases.cue | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/contracts/releases.cue b/.github/workflows/contracts/releases.cue index 08be2582d..e3c624e77 100644 --- a/.github/workflows/contracts/releases.cue +++ b/.github/workflows/contracts/releases.cue @@ -9,7 +9,23 @@ materials: [ {type: "CONTAINER_IMAGE", name: "control-plane-image", output: true}, {type: "CONTAINER_IMAGE", name: "artifact-cas-image", output: true}, // SBOMS for those container images - {type: "SBOM_CYCLONEDX_JSON", name: "sbom-control-plane"}, - {type: "SBOM_CYCLONEDX_JSON", name: "sbom-artifact-cas"}, + { + type: "SBOM_CYCLONEDX_JSON", name: "sbom-control-plane" + annotations: [ + { + name: "component" + value: "control-plane" + }, + ] + }, + { + type: "SBOM_CYCLONEDX_JSON", name: "sbom-artifact-cas" + annotations: [ + { + name: "component" + value: "cas" + }, + ] + }, ] runner: type: "GITHUB_ACTION"