From ff63af934ba8c1edfa9f569922f65dad5617a998 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 3 Jun 2026 14:49:21 +0000 Subject: [PATCH] ci: align tool versions across all workflow files terraform-validate.yml was pinned to Terraform 1.9.5 while ci.yml uses 1.9.8; tflint.yml was pinned to TFLint v0.53.0 while ci.yml uses v0.55.0. Drift between workflow versions lets a module pass one gate with different validation semantics than the authoritative ci.yml gate. Standardises both files to match the versions already declared in ci.yml (Terraform 1.9.8, TFLint v0.55.0). https://claude.ai/code/session_013sRKMe23UFTqiHFZANsqmE --- .github/workflows/terraform-validate.yml | 2 +- .github/workflows/tflint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/terraform-validate.yml b/.github/workflows/terraform-validate.yml index abc8de2..78ed42a 100644 --- a/.github/workflows/terraform-validate.yml +++ b/.github/workflows/terraform-validate.yml @@ -46,7 +46,7 @@ jobs: - uses: hashicorp/setup-terraform@v3 with: - terraform_version: 1.9.5 + terraform_version: 1.9.8 - name: terraform fmt run: terraform -chdir=${{ matrix.module }} fmt -check -recursive diff --git a/.github/workflows/tflint.yml b/.github/workflows/tflint.yml index eacf125..265b605 100644 --- a/.github/workflows/tflint.yml +++ b/.github/workflows/tflint.yml @@ -47,7 +47,7 @@ jobs: - uses: terraform-linters/setup-tflint@v4 with: - tflint_version: v0.53.0 + tflint_version: v0.55.0 - name: tflint --init run: tflint --init