diff --git a/README.md b/README.md index f1ce0a0d..3e65221d 100644 --- a/README.md +++ b/README.md @@ -53,19 +53,19 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 name: Checkout source code - - uses: actions/cache@v3 + - 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 with: - tflint_version: v0.44.1 + tflint_version: v0.50.3 - name: Show version run: tflint --version @@ -83,11 +83,11 @@ jobs: ### Latest Release ```yaml -- uses: terraform-linters/setup-tflint@v3 +- uses: terraform-linters/setup-tflint@v4 ``` or specify it explicitly as ```yaml -- uses: terraform-linters/setup-tflint@v3 +- uses: terraform-linters/setup-tflint@v4 with: tflint_version: latest ``` @@ -95,7 +95,7 @@ or specify it explicitly as ### Using Custom GitHub Token ```yaml -- uses: terraform-linters/setup-tflint@v3 +- uses: terraform-linters/setup-tflint@v4 with: github_token: ${{ secrets.MY_CUSTOM_GITHUB_TOKEN }} ``` @@ -103,7 +103,7 @@ or specify it explicitly as ### Loading Shared Configuration ```yaml -- uses: terraform-linters/setup-tflint@v3 +- uses: terraform-linters/setup-tflint@v4 - uses: terraform-linters/tflint-load-config-action@v1 with: source-repo: me/tflint-config @@ -113,7 +113,7 @@ or specify it explicitly as ### Wrapper ```yaml -- uses: terraform-linters/setup-tflint@v3 +- uses: terraform-linters/setup-tflint@v4 with: tflint_wrapper: true