chore(deps): update terraform aws to v6.22.0 #591
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: QA | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - renovate/* | |
| permissions: | |
| contents: read | |
| id-token: write | |
| env: | |
| # renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp | |
| TERRAFORM_VERSION: "1.13.4" | |
| jobs: | |
| qa: | |
| name: QA | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3 | |
| with: | |
| terraform_version: ${{ env.TERRAFORM_VERSION }} | |
| - name: Format Checkout | |
| run: terraform fmt -check -diff -recursive terraform | |
| - name: Lint | |
| run: make lint | |
| - name: Environment Info | |
| run: | | |
| echo "ref: ${{ github.ref }}" | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5 | |
| with: | |
| role-to-assume: arn:aws:iam::022327457572:role/ks-infrastructure-maintainer | |
| aws-region: eu-west-1 | |
| - name: Terraform Init | |
| run: terraform init | |
| working-directory: terraform | |
| - name: Terraform Plan | |
| run: terraform plan -lock-timeout=20m | |
| working-directory: terraform |