File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ outputs:
1414runs :
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
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
You can’t perform that action at this time.
0 commit comments