Bump hashicorp/tfe in /terraform/terraform in the all group #7495
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/setup-terraform@v3.1.2 | |
- name: Install TFLint | |
uses: terraform-linters/setup-tflint@v4.1.0 | |
- 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 |