From 8d36de712abe48bf982bbe585f5bdaa3227426c3 Mon Sep 17 00:00:00 2001 From: umeshkumhar Date: Wed, 6 Mar 2024 13:27:45 +0530 Subject: [PATCH] add github actions for tf lint check --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a376eaae7..d7537941f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,10 +12,12 @@ jobs: steps: - uses: actions/checkout@v4 - uses: hashicorp/setup-terraform@v3 + with: + terraform_version: "1.5.7" - name: Terraform fmt id: fmt - run: terraform fmt -check + run: terraform fmt -check -recursive continue-on-error: false - name: Terraform Validate