Skip to content

Commit

Permalink
add sbom workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingDepot committed Dec 20, 2023
1 parent 9911090 commit 4361603
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/depcheck.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/sbom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Generate SBOM"

on:
push:
branches:
- rh/action-test
workflow_dispatch:

jobs:
gen-sbom:
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: build/reports/sbom.json

0 comments on commit 4361603

Please sign in to comment.