Bump hashicorp/aws in /terraform/aws/accounts/audit in the all group #7615
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Terraform - Validate | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Terraform | |
uses: hashicorp/[email protected] | |
- name: Install TFLint | |
uses: terraform-linters/[email protected] | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Terraform Format | |
run: terraform fmt -check -diff -recursive | |
- name: Terraform Lint | |
run: | | |
tflint --version | |
tflint --init | |
tflint --config="$(pwd)/.tflint.hcl" --format=compact --recursive |