Skip to content

Automatic (outdated) images cleanup #25

Automatic (outdated) images cleanup

Automatic (outdated) images cleanup #25

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'