Skip to content

Update actions/checkout action to v4 #94

Update actions/checkout action to v4

Update actions/checkout action to v4 #94

Workflow file for this run

name: Terraform
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
branches: [main]
release:
types: [published]
jobs:
check-format:
runs-on: ubuntu-latest
container: hashicorp/terraform
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Terraform Format Check
run: terraform fmt -check -recursive -diff
validate:
runs-on: ubuntu-latest
container: hashicorp/terraform
strategy:
matrix: {
dir: [
'examples/basic',
'examples/log-configuration-cw',
'examples/log-configuration-s3',
'examples/setting-container-insights',
'examples/service-connect-defaults'
]
}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Terraform Init
run: terraform init -upgrade
working-directory: ${{ matrix.dir }}
- name: Terraform Validate
run: terraform validate
working-directory: ${{ matrix.dir }}
mock-plan:
runs-on: ubuntu-latest
container: hashicorp/terraform
strategy:
matrix: {
dir: [
'examples/basic',
'examples/log-configuration-cw',
'examples/log-configuration-s3',
'examples/setting-container-insights',
'examples/service-connect-defaults'
]
}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Terraform Init
run: terraform init -upgrade
working-directory: ${{ matrix.dir }}
- name: Terraform Plan (Mock)
run: terraform plan
working-directory: ${{ matrix.dir }}
infracost:
runs-on: ubuntu-latest
name: Show infracost diff
strategy:
matrix: {
dir: [
'examples/basic',
'examples/log-configuration-cw',
'examples/log-configuration-s3',
'examples/setting-container-insights',
'examples/service-connect-defaults'
]
}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Run infracost diff
uses: infracost/infracost-gh-action@master
env:
INFRACOST_API_KEY: ${{ secrets.INFRACOST_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: ${{ matrix.dir }}