Skip to content

feat(deps): update terraform cloudflare ( 5.22.0 → 5.23.0 ) #550

feat(deps): update terraform cloudflare ( 5.22.0 → 5.23.0 )

feat(deps): update terraform cloudflare ( 5.22.0 → 5.23.0 ) #550

Workflow file for this run

---
name: Terraform Lint
on:
push:
branches:
- main
paths:
- "terraform/**"
pull_request:
branches:
- main
paths:
- "terraform/**"
workflow_dispatch:
inputs:
debug:
description: "Debug mode"
type: boolean
required: false
default: false
schedule:
- cron: "0 0 * * 1"
permissions:
contents: read
jobs:
tflint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
name: Checkout source code
- uses: actions/cache@v6
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
key: ubuntu-tflint-${{ hashFiles('.tflint.hcl') }}
- uses: terraform-linters/setup-tflint@v6
name: Setup TFLint
- name: Init TFLint
run: tflint --init
env:
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting
GITHUB_TOKEN: ${{ github.token }}
- name: Run TFLint
run: tflint --chdir terraform -f compact --recursive --color