From 606d5a2ef521355a553170fb59f164effb7306f9 Mon Sep 17 00:00:00 2001 From: Yash Pankhania Date: Mon, 27 Apr 2026 14:23:50 +1000 Subject: [PATCH] fix arg list in SBOM uploads --- .github/workflows/sbom.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sbom.yaml b/.github/workflows/sbom.yaml index 9db009e..beb3579 100644 --- a/.github/workflows/sbom.yaml +++ b/.github/workflows/sbom.yaml @@ -51,13 +51,13 @@ jobs: jq -n \ --arg name "$PROJECT_NAME" \ --arg version "$PROJECT_VERSION" \ - --arg bom "$(base64 -w0 sbom.cdx.json)" \ + --rawfile bom sbom.cdx.json \ --arg ref "$GITHUB_REF_NAME" \ '{ projectName: $name, projectVersion: $version, autoCreate: true, - bom: $bom, + bom: ($bom | @base64), projectTags: [ {name: "python"}, {name: $ref}