Skip to content

Update trivy.yml

Update trivy.yml #72

Workflow file for this run

name: Trivy security scan
on:
push:
branches-ignore:
- master
jobs:
trivy-secrets-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Scan for secrets in repository
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
scanners: 'secret'
severity: 'LOW,MEDIUM,HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'