Skip to content

Update all non-major dependencies to ~> 1.5.0 #188

Update all non-major dependencies to ~> 1.5.0

Update all non-major dependencies to ~> 1.5.0 #188

Workflow file for this run

# Copyright 2025 Canonical Ltd.
# See LICENSE file for licensing details.
name: Terraform files test
on:
pull_request:
permissions:
contents: read
jobs:
validate:
name: Validate terraform configuration files
runs-on: ubuntu-latest
env:
WORKING_DIR: 'deployments'
steps:
- name: Check out code
uses: actions/checkout@v6.0.3
- name: Setup Terraform
uses: hashicorp/setup-terraform@v4.0.1
- name: Run terraform fmt
run: terraform fmt -check -recursive
working-directory: ${{env.WORKING_DIR}}
- name: Setup Tflint
uses: terraform-linters/setup-tflint@v6.2.2
with:
tflint_wrapper_enabled: true
- name: Run tflint
run: |
tflint --version
tflint --init
tflint -f compact --recursive
working-directory: ${{env.WORKING_DIR}}