Skip to content

Commit

Permalink
SBOM
Browse files Browse the repository at this point in the history
  • Loading branch information
digiserg committed Sep 25, 2024
1 parent c3b705e commit f49d1f1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build nodejs project
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Install and build
steps:
- uses: actions/checkout@v4

- name: Setup Node.js v20.17.0
uses: actions/setup-node@v4
with:
node-version: 20.17.0

- run: npm install

- name: Create SBOM with CycloneDX
uses: CycloneDX/gh-node-module-generatebom@v1
with:
output: './workbench.app.bom.xml'

0 comments on commit f49d1f1

Please sign in to comment.