Skip to content

Use table

Use table #3

Workflow file for this run

name: build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Trivy vulnerability scanner in IaC mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'config'
hide-progress: false
format: 'table'
output: 'table'
exit-code: '1'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'