Skip to content

switch to file system scan #11

switch to file system scan

switch to file system scan #11

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: 'fs'
hide-progress: false
format: 'table'
output: table.txt
exit-code: '1'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
- name: Show results
if: always()
run: cat table.txt