Bump github.com/gruntwork-io/terratest from 0.46.11 to 0.46.13 in /test/terratest #186
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: | |
pull_request: | |
jobs: | |
validate: | |
name: Validate terraform configuration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: ~1.3 | |
- name: Terraform Format | |
id: fmt | |
run: terraform fmt -check | |
- name: Terraform Init | |
id: init | |
run: terraform init -backend=false | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate -no-color |