Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ jobs:
- name: Scan build artifacts for secrets
run: gitleaks detect --config .gitleaks.toml --source ./build --no-git --verbose --redact

- name: Generate SBOM
run: npx @cyclonedx/cyclonedx-npm --output-file sbom.json --output-format json

- name: Upload SBOM as release artifact
uses: actions/upload-artifact@v4
with:
name: sbom
path: sbom.json
if-no-files-found: error

- name: Version and Publish
uses: changesets/action@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ coverage/
.automaker/authority/
.automaker/settings.json

# SBOM (generated artifact)
sbom.json

# Reports (generated artifacts)
protoLabs.report.html
*.report.html
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,12 @@ See [`CONTRIBUTING.md`](./CONTRIBUTING.md) and [`LOCAL.md`](./LOCAL.md) for full

---

## Compliance

HELiXiR generates a [CycloneDX](https://cyclonedx.org/) Software Bill of Materials (SBOM) as part of every release. The `sbom.json` artifact is attached to each GitHub Release and lists all runtime and development dependencies with their versions, licenses, and package identifiers — suitable for enterprise security audits and supply-chain compliance reviews.

---

## Contributing

See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
Expand Down
Loading