Bump hashicorp/aws from 5.44.0 to 5.59.0 in /exoscale/demo #102
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] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
name: Validate terraform | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: terraform validate demo | |
if: ${{ always() }} | |
uses: dflook/terraform-validate@v1 | |
id: validate-demo | |
with: | |
path: exoscale/demo | |
- name: terraform validate production | |
if: ${{ always() }} | |
uses: dflook/terraform-validate@v1 | |
id: validate-production | |
with: | |
path: exoscale/production | |
- name: Validate demo failed | |
if: ${{ failure() && steps.validate-demo.outputs.failure-reason == 'validate-failed' }} | |
run: echo "terraform validate for demo failed" | |
- name: Validate production failed | |
if: ${{ failure() && steps.validate-production.outputs.failure-reason == 'validate-failed' }} | |
run: echo "terraform validate for production failed" |