Skip to content

Merge pull request #3 from BatistaGabriel/dependabot/npm_and_yarn/mul… #4

Merge pull request #3 from BatistaGabriel/dependabot/npm_and_yarn/mul…

Merge pull request #3 from BatistaGabriel/dependabot/npm_and_yarn/mul… #4

Workflow file for this run

name: trivy
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
scan:
name: scan
permissions:
contents: read
security-events: write
actions: read
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
scan-ref: '.'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
ignore-unfixed: true
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results.sarif'