Skip to content

Merge branch '0.3.5' into 'main' #6

Merge branch '0.3.5' into 'main'

Merge branch '0.3.5' into 'main' #6

Workflow file for this run

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
- name: Upload SBOM artifact
uses: actions/upload-artifact@v2
with:
name: SBOM
path: ./bom.json
- name: Commit SBOM to repo
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add bom.json
git commit -m "Adding SBOM"
git push