From 6db178e6bafe975f8950a4485096f11dd8613c50 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Mon, 10 Nov 2025 22:15:45 +0100 Subject: [PATCH] Fix TFLint setup timeout by pinning version - Changed tflint_version from 'latest' to 'v0.50.3' - Avoids GitHub API timeout when fetching latest release - Fixes: Connect Timeout Error in Setup TFLint step --- .gitea/workflows/pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 551ee0e..9c14368 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -20,7 +20,7 @@ jobs: - name: Setup TFLint uses: terraform-linters/setup-tflint@v4 with: - tflint_version: latest + tflint_version: v0.50.3 - name: Initialize TFLint working-directory: terraform