Skip to content

Commit

Permalink
[DPE-5585] SBOM Generation (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
deusebio authored Oct 3, 2024
1 parent 32b58b2 commit 24d4322
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ jobs:
build:
uses: ./.github/workflows/build.yaml
scan:
name: Trivy scan
name: Trivy scan and SBOM Generation
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
uses: actions/checkout@v4
- name: Install rockcraft (for skopeo)
run: |
sudo snap install rockcraft --classic --edge
- uses: actions/download-artifact@v3
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: charmed-kafka
- name: Import locally
Expand All @@ -39,3 +40,22 @@ jobs:
if: always()
with:
sarif_file: 'trivy-results.sarif'

- name: Run Trivy in GitHub SBOM mode and submit results to Dependency Graph
uses: aquasecurity/trivy-action@master
with:
scan-type: 'image'
format: 'spdx-json'
output: 'dependency-results.sbom.json'
image-ref: 'trivy/charmed-kafka:test'
github-pat: ${{ secrets.GITHUB_TOKEN }}
severity: "MEDIUM,HIGH,CRITICAL"
scanners: "vuln"

- name: Upload trivy report as a Github artifact
uses: actions/upload-artifact@v4
with:
name: trivy-sbom-report
path: '${{ github.workspace }}/dependency-results.sbom.json'
retention-days: 90

0 comments on commit 24d4322

Please sign in to comment.