Skip to content

Notification + diff #54

Notification + diff

Notification + diff #54

Workflow file for this run

name: Trivy security scan
on:
schedule:
- cron: '0 10 * * *'
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'
security-checks: 'secret'
severity: 'LOW,MEDIUM,HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'