From 4a08cb15b9fa077bcd37538e69f58f14549f221d Mon Sep 17 00:00:00 2001 From: Daniele Monti <62102073+Monska85@users.noreply.github.com> Date: Tue, 22 Apr 2025 17:48:45 +0200 Subject: [PATCH] fix: github action versions --- .github/workflows/tflint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tflint.yml b/.github/workflows/tflint.yml index fcf569b..ae773b4 100644 --- a/.github/workflows/tflint.yml +++ b/.github/workflows/tflint.yml @@ -1,9 +1,9 @@ name: Lint on: push: - branches: [ main ] + branches: [main] pull_request: - types: [ opened, synchronize ] + types: [opened, synchronize] jobs: tflint: @@ -14,16 +14,16 @@ jobs: os: [ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 name: Checkout source code - - uses: actions/cache@v2 + - uses: actions/cache@v4 name: Cache plugin dir with: path: ~/.tflint.d/plugins key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} - - uses: terraform-linters/setup-tflint@v3 + - uses: terraform-linters/setup-tflint@v4 name: Setup TFLint - name: Show version