We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 925fdf5 commit 9449511Copy full SHA for 9449511
.github/workflows/sbom.yaml
@@ -80,12 +80,13 @@ jobs:
80
81
- name: Merge SBOMs
82
# https://github.com/CycloneDX/cyclonedx-cli#merge-command
83
+ # Using v1_3 because with the default (1.6) the upload failed at the DT web interface
84
#
85
# The generated SBOM is fixed with sed to remove potentially bad characters
86
# Slashes are not allowed after the @ in the meta/component's bom-ref
87
# attribute and purl node.
88
run: |
- cyclonedx merge --input-files bom.composer.xml bom.npm.xml --output-file bom.xml
89
+ cyclonedx merge --input-files bom.composer.xml bom.npm.xml --output-file bom.xml --output-version v1_3
90
sed -i -r 's;(pkg:composer/__root__)@[^"<]+;\1@merged-sbom;' bom.xml
91
92
# Pass merged BOM to next Job
0 commit comments