Skip to content

add labels to issue templates #2

add labels to issue templates

add labels to issue templates #2

Workflow file for this run

name: Terraform Security Scan
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
trivy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tflint
uses: ghcr.io/terraform-linters/tflint
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
scan-ref: .
scanners: 'vuln,secret,config'
ignore-unfixed: false
exit-code: '1'
format: 'table'
severity: 'CRITICAL,HIGH'