Skip to content

Update actions/stale action to v9 #82

Update actions/stale action to v9

Update actions/stale action to v9 #82

Workflow file for this run

name: Trivy scanner
on:
- push
permissions:
contents: read
jobs:
trivy:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run Trivy scanner on repository
uses: aquasecurity/trivy-action@master
with:
scan-type: repo
ignore-unfixed: true
vuln-type: "os,library"
severity: "MEDIUM,HIGH,CRITICAL"
format: "sarif"
output: "trivy-repository-scan.sarif"
- name: Upload Trivy scan results to GitHub Security
uses: github/codeql-action/[email protected]
with:
# Path to SARIF file relative to the root of the repository
sarif_file: trivy-repository-scan.sarif
# Optional category for the results
# Used to differentiate multiple results for one commit
category: repository-scan