Skip to content

Bump aquasecurity/tfsec-action from 1.0.0 to 1.0.3 #21

Bump aquasecurity/tfsec-action from 1.0.0 to 1.0.3

Bump aquasecurity/tfsec-action from 1.0.0 to 1.0.3 #21

Workflow file for this run

name: "CI"
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
name: CI Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Init
run: terraform init
- name: Validate
run: terraform validate
- name: Formatting
run: terraform fmt -recursive -check -diff -no-color
# https://github.com/marketplace/actions/setup-tflint
- name: Lint
uses: terraform-linters/setup-tflint@v3
with:
tflint_version: latest
- id: tflint
run: tflint --recursive --format compact
# https://github.com/marketplace/actions/tfsec-action
- name: tfsec
uses: aquasecurity/tfsec-action@v1.0.3