We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927b176 commit c5fc3e6Copy full SHA for c5fc3e6
1 file changed
.github/workflows/release.yml
@@ -77,9 +77,19 @@ jobs:
77
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
78
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
79
80
+ # Needed for syft to generate SBOM also for npm dependencies
81
+ - name: Install npm
82
+ uses: actions/setup-node@v4
83
+ with:
84
+ node-version: 18
85
+ - name: Get npm dependencies
86
+ run: |
87
+ cd web
88
+ npm install
89
+
90
- name: Generate SBOM
91
uses: anchore/sbom-action@v0
92
with:
93
path: .
- artifact-name: sbom.spdx
94
+ artifact-name: sbom.spdx.json
95
upload-artifact-retention: 14
0 commit comments