Skip to content

Commit

Permalink
first attempt to run compliance-assistant in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Jul 1, 2024
1 parent e9596aa commit b0e8313
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sbom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2024 DB Systel GmbH
#
# SPDX-License-Identifier: Apache-2.0

name: Full SBOM Workflow

on:
push:
branches:
- main
pull_request:

jobs:
sbom:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install compliance-assistant
run: pip install compliance-assistant
- name: Generate SBOM
run: compliance-assistant sbom-generate -d . -o sbom-raw.json

0 comments on commit b0e8313

Please sign in to comment.