Skip to content

v3.1.0

v3.1.0 #19

Workflow file for this run

name: Scans
on:
push:
branches:
- main
release:
types:
- published
jobs:
sbom:
name: SBOM
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Update Dependency Graph
uses: aquasecurity/[email protected]
with:
scan-type: fs
scan-ref: .
format: github
output: sbom.spdx.json
github-pat: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Sarif Report
uses: aquasecurity/[email protected]
with:
scan-type: fs
scan-ref: .
format: sarif
output: trivy.sarif.json
- name: Upload report to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: trivy.sarif.json