Skip to content

ci: update WF versions and add dependabot config file #32

ci: update WF versions and add dependabot config file

ci: update WF versions and add dependabot config file #32

Workflow file for this run

name: Validate Terraform manifests with tflint
on:
pull_request:
jobs:
tflint:
name: tflint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.6.6
- name: Terraform Init
run: terraform init
- name: Check with tflint
uses: reviewdog/action-tflint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
fail_on_error: "true"
filter_mode: "diff_context"
flags: "--module"