Skip to content

Commit

Permalink
Implement SBOM creation on push
Browse files Browse the repository at this point in the history
Add CycloneDX generator for SBOM file on each push action.
  • Loading branch information
nensor authored May 22, 2024
1 parent 0b9d82c commit 92a1324
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Generate SBOM
uses: CycloneDX/gh-python-generate-sbom@v2
with:
input: ./requirements.txt
output: ./bom.json
format: json

0 comments on commit 92a1324

Please sign in to comment.