Skip to content

Commit 894091b

Browse files
committed
Fix quotes
1 parent ffe3a10 commit 894091b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/actions/sbom/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ outputs:
1414
runs:
1515
using: "composite"
1616
steps:
17+
# SBOM generation is pretty heavy, make some room
18+
- name: Maximize build space
19+
uses: ublue-os/remove-unwanted-software@cc0becac701cf642c8f0a6613bbdaf5dc36b259e # v9
20+
with:
21+
remove-codeql: true
22+
1723
- name: Setup Syft
1824
id: setup-syft
1925
uses: anchore/sbom-action/download-syft@f8bdd1d8ac5e901a77a92f111440fdb1b593736b # v0
@@ -24,7 +30,7 @@ runs:
2430
SYFT_CMD: ${{ steps.setup-syft.outputs.cmd }}
2531
shell: bash
2632
run: |
27-
OUTPUT_PATH="`$(mktemp -d)/sbom.json`"
33+
OUTPUT_PATH="$(mktemp -d)/sbom.json"
2834
export SYFT_PARALLELISM=$(($(nproc)*2))
2935
$SYFT_CMD ${{ inputs.image-ref }} --select-catalogers "rpm,+sbom-cataloger" -o spdx-json=${OUTPUT_PATH}
3036
echo "OUTPUT_PATH=${OUTPUT_PATH}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)