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 3aca2d4 commit 4496e41Copy full SHA for 4496e41
1 file changed
.github/workflows/sbom.yaml
@@ -110,8 +110,11 @@ jobs:
110
npm ci
111
112
- name: Generate SBOM (apps:simplesettings - npm)
113
- #
114
- # See previous step's comment on these options
+ # Switch --ignore-npm-errors is used to not fail on inconsistencies
+ # found by npm ls, which complains about (mostly) "extraneous" packages
115
+ # found in node_modules, which are apparently related to us using npm
116
+ # overrides in package.json and presumably npm ls not being capable
117
+ # of analyzing this correctly.
118
#
119
run: |
120
cd apps-custom/simplesettings
@@ -127,7 +130,7 @@ jobs:
127
130
name: bom-partials
128
131
path: |
129
132
bom.nextcloud.*.xml
- bom.app-*.xml
133
+ bom.app-*.composer.xml
134
135
merge-sboms:
136
needs: generate-sbom
0 commit comments