Skip to content

Commit

Permalink
Print tree
Browse files Browse the repository at this point in the history
  • Loading branch information
ioboi committed Feb 5, 2024
1 parent adae787 commit a01c16a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: SBOM Generator
name: SBOM

on:
push:
Expand All @@ -21,14 +21,14 @@ jobs:
- name: 'Generate SBOM for Ruby dependencies'
uses: docker://ghcr.io/cyclonedx/cdxgen:v10.0.4
with:
args: --spec-version 1.4 -o bom-ruby.json -t ruby .
args: --spec-version 1.4 -p -o bom-ruby.json -t ruby .

- name: 'Generate SBOM for Node.js dependencies'
uses: docker://ghcr.io/cyclonedx/cdxgen:v10.0.4
with:
args: --spec-version 1.4 -o bom-npm.json -t npm .
args: --spec-version 1.4 -p -o bom-npm.json -t npm .

- name: 'Merge frontend and backend SBOMs'
- name: 'Merge Ruby and Node.js SBOMs'
uses: docker://cyclonedx/cyclonedx-cli:0.25.0
with:
args: merge --input-format json --input-files bom-ruby.json bom-npm.json --output-format json --output-file bom.json
Expand Down

0 comments on commit a01c16a

Please sign in to comment.