chore(deps): Update Terraform Providers to >= 6.52.0 #91
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
| # Validates examples at the minimum Terraform version (root versions.tf required_version). | |
| # The Prow client Dockerfile pins the newest Terraform release; this job guards module minimum compatibility. | |
| name: Verify (minimum Terraform) | |
| on: | |
| pull_request: | |
| jobs: | |
| verify-terraform-1-5-7: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: hashicorp/setup-terraform@dfe3c3f87815947d99a8997f908cb6525fc44e9e # v4.0.1 | |
| with: | |
| terraform_version: "1.5.7" | |
| terraform_wrapper: false | |
| - name: Validate examples (minimum supported Terraform) | |
| run: make verify |