Configure Renovate - autoclosed #16
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
on: | |
pull_request: | |
push: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
container: | |
image: hashicorp/terraform:0.12.31 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 5 | |
- name: Check Terraform version | |
run: terraform --version | |
- name: Initialise Terraform | |
run: terraform init | |
- name: Perform Terraform validation | |
run: AWS_DEFAULT_REGION=us-east-1 terraform validate |