Skip to content

updating to latest certifi library for dependabot low vulnerability #5

updating to latest certifi library for dependabot low vulnerability

updating to latest certifi library for dependabot low vulnerability #5

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