File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,21 @@ jobs:
1818 generate-and-load-sbom :
1919 runs-on : ubuntu-24.04
2020 steps :
21- - name : Set up Node.js
22- uses : actions/setup-node@v4
23- with :
24- node-version : ' 20 '
21+ # - name: Set up Node.js
22+ # uses: actions/setup-node@v4
23+ # with:
24+ # node-version: '23 '
2525
2626 - name : Install CycloneDX cdxgen
2727 run : npm install @cyclonedx/cdxgen
2828
2929 - name : Generate SBOM with CycloneDX cdxgen
30- run : npx cdxgen ${{ env.IMAGE_REFERENCE }} -t universal -output cdxgen-sbom.cdx.json --spec-version 1.6 --json-pretty
30+ run : |
31+ npx cdxgen ${{ env.IMAGE_REFERENCE }} \
32+ --type docker \
33+ --output cdxgen-sbom.cdx.json \
34+ --spec-version 1.6 \
35+ --json-pretty
3136
3237 - name : Upload SBOM as GitHub Artifact
3338 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments