Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/sca-integration-cdxgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
--output cdxgen-sbom.cdx.json \
--spec-version 1.6 \
--json-pretty

env:
CDXGEN_TEMP_DIR: ${{ runner.temp }}/cdxgen-temp
- name: Upload SBOM as GitHub Artifact
uses: actions/upload-artifact@v4
with:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/sca-integration-depscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
generate-and-load-sbom:
runs-on: ubuntu-24.04
steps:
- name: Install OWASP dep-scan
- name: Install OWASP dep-scan v6 beta
run: |
sudo npm install -g @cyclonedx/cdxgen
pip install owasp-depscan
pip install --pre owasp-depscan[all]

- name: Generate SBOM with OWASP dep-scan
run: |
Expand All @@ -36,6 +36,10 @@ jobs:
--type docker \
--reports-dir reports \
--explain
env:
CDXGEN_TEMP_DIR: ${{ runner.temp }}/cdxgen-temp
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYTHONUTF8: 1

- name: Upload SBOM as GitHub Artifact
uses: actions/upload-artifact@v4
Expand Down