Skip to content

develop-to-develop-test #94

develop-to-develop-test

develop-to-develop-test #94

Workflow file for this run

name: Trivy Scan
on:
pull_request:
branches:
- main
- master
- develop
- stable
jobs:
trivy-scan:
name: Scanner
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Trivy vulnerability scanner in fs mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
exit-code: '1'
ignore-unfixed: true
severity: 'CRITICAL,HIGH,MEDIUM,LOW'