Skip to content

Commit

Permalink
Add generating an SBOM file
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzondervan committed Mar 27, 2024
1 parent 1b4e34c commit 3252548
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -481,3 +481,15 @@ jobs:
- name: Chores
if: (success() || failure())
run: docker-compose down

Generate-SBOM:
needs: [Dependency-check,Database,Docker-Scout]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: advanced-security/generate-sbom-action@v1
id: gensbom
- uses: actions/upload-artifact@v3
with:
name: sbom
path: ${{ steps.gensbom.outputs.fileName }}

0 comments on commit 3252548

Please sign in to comment.