upgrade google_provider to 6.12.0 #779
Workflow file for this run
This file contains 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: Terraform Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'terraform/**' | |
push: | |
branches: | |
- main | |
paths: | |
- 'terraform/**' | |
permissions: | |
contents: read | |
jobs: | |
terraform-fmt: | |
name: 'Terraform fmt' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v2.0.0 | |
with: | |
# TODO: extract terraform from the tf file when we have pinned | |
terraform_version: 1.9.8 | |
- name: Terraform fmt | |
id: fmt | |
run: terraform fmt -check -recursive -diff . | |
terraform-validate: | |
name: 'Terraform validate' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./terraform/gcp/modules/sigstore | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v2.0.0 | |
with: | |
# TODO: extract terraform from the tf file when we have pinned | |
terraform_version: 1.9.8 | |
- name: Terraform init | |
id: init | |
run: terraform init | |
- name: Terraform validate | |
id: validate | |
run: terraform validate | |
terraform-tfsec: | |
name: 'Terraform tfsec' | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: tfsec | |
uses: tfsec/tfsec-sarif-action@21ded20e8ca120cd9d3d6ab04ef746477542a608 # v0.1.0 | |
with: | |
sarif_file: tfsec.sarif | |
working_directory: '.' | |
tfsec_args: --force-all-dirs --verbose | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: tfsec.sarif |