Bump oracle/oci from 5.5.0 to 5.6.0 in /terraform #22
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 | |
on: | |
pull_request: | |
paths: | |
- 'terraform/**' | |
- '.github/workflows/terraform.yml' | |
push: | |
branches: | |
- main | |
paths: | |
- terraform/ | |
- '.github/workflows/terraform.yml' | |
jobs: | |
# Build containers for x86 | |
terraform: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- run: terraform -chdir=terraform/ fmt -check | |
- run: terraform -chdir=terraform/ init -backend=false | |
# Need to have a values.yaml for validate to pass. | |
- run: cp terraform/values.yaml.template terraform/values.yaml | |
- run: terraform -chdir=terraform/ validate |