Skip to content

add tfsec

add tfsec #61

Workflow file for this run

---
name: Build
'on':
push:
branches:
- main
tags:
- "**"
pull_request_target:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
env:
TERRAFORM_VERSION: 1.2.7
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up go
uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Download Terraform
run: "./scripts/download_terraform.sh $TERRAFORM_VERSION"
- name: Check format
run: "~/tfbin/terraform fmt -write=false -diff=true -check"
- name: Check tfsec
run: go install github.com/aquasecurity/tfsec/cmd/tfsec@latest && tfsec --concise-output
- name: Post to hook-exporter
run: "./.github/exporter.sh"
env:
EXPORTER_TOKEN: "${{ secrets.EXPORTER_TOKEN }}"
JOB_STATUS: "${{ job.status }}"
if: always() && github.ref == 'refs/heads/main'