Skip to content

fix: show favorite only if operators (#75) #82

fix: show favorite only if operators (#75)

fix: show favorite only if operators (#75) #82

Workflow file for this run

name: SBOM scans
on:
push:
branches:
- main
permissions:
actions: read
contents: write
security-events: write
packages: write
jobs:
sbom:
name: SBOM
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Generate Trivy GitHub report
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
scan-ref: '.'
format: 'github'
output: 'dependency-results.sbom.json'
github-pat: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Trivy SARIF report
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
scan-ref: '.'
format: 'sarif'
output: 'trivy-results.sarif'
github-pat: ${{ secrets.GITHUB_TOKEN }}
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'