Bump google-github-actions/setup-gcloud from 2.1.1 to 2.1.2 #272
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: Receive pull request | |
on: | |
pull_request: | |
jobs: | |
compliance-scan: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Checkov action | |
id: checkov | |
uses: bridgecrewio/[email protected] | |
security-scan: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Security scan | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: config | |
trivy-config: trivy.yaml | |
ignore-unfixed: false | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: terraform-linters/setup-tflint@v4 | |
name: Setting up TFLint | |
with: | |
tflint_version: v0.29.0 | |
- name: Initializing TFLint | |
run: tflint --init | |
- name: Linting | |
run: tflint -f compact --disable-rule=terraform_module_pinned_source | |
qa: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
- name: Terraform Format | |
run: terraform fmt -check -recursive |