chore(deps): update terraform helm to v3 #428
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
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: extractions/setup-just@v3 | |
| - name: Setup Tofu | |
| uses: opentofu/setup-opentofu@v1 | |
| - name: setup TerraGrunt | |
| uses: eLco/setup-terragrunt@v1 | |
| with: | |
| terragrunt_version: 0.77.6 | |
| - uses: webfactory/ssh-agent@v0.9.1 | |
| with: | |
| ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| - uses: dcarbone/install-jq-action@v3 | |
| - name: Reveal secrets | |
| uses: entrostat/git-secret-action@v4 | |
| with: | |
| gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| - name: Lint | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| working-directory: ./bootstrap | |
| run: source .env && terragrunt run-all fmt -check | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: extractions/setup-just@v3 | |
| - name: Setup Tofu | |
| uses: opentofu/setup-opentofu@v1 | |
| - name: setup TerraGrunt | |
| uses: eLco/setup-terragrunt@v1 | |
| with: | |
| terragrunt_version: 0.77.6 | |
| - uses: webfactory/ssh-agent@v0.9.1 | |
| with: | |
| ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| - uses: dcarbone/install-jq-action@v3 | |
| - name: Reveal secrets | |
| uses: entrostat/git-secret-action@v4 | |
| with: | |
| gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| - name: Validate | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| working-directory: ./bootstrap | |
| run: source .env && terragrunt run -a validate --queue-exclude-dir bastion --experiment cli-redesign |