chore(deps): update all patch dependencies #1410
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Lint Terraform files" | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.tf" | |
| - ".github/workflows/*.yml" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Setup Terraform tools | |
| uses: cds-snc/terraform-tools-setup@v1 | |
| - name: Lint TF files | |
| run: terraform fmt -check -no-color -diff -recursive |