Bump the all-deps group with 13 updates #943
Workflow file for this run
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: 'Terragrunt format check' | |
| on: | |
| - pull_request | |
| permissions: | |
| contents: read | |
| env: | |
| tofu_version: '1.10.2' | |
| tg_version: '0.83.2' | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Check terragrunt HCL | |
| uses: gruntwork-io/terragrunt-action@4ed5b7344c80315e5357f28f36159fc980bc2d5a # v3.4.0 | |
| with: | |
| tofu_version: ${{ env.tofu_version }} | |
| tg_version: ${{ env.tg_version }} | |
| tg_dir: 'deployment' | |
| tg_command: 'hclfmt --terragrunt-check --terragrunt-diff' |