feat: Update versions of third party docker images #258
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: Formatting | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Show commit SHA | |
run: | | |
git rev-parse HEAD | |
git rev-parse --short HEAD | |
- name: Install terraform | |
run: | | |
if ! which terraform 2>/dev/null; then | |
sh tools/install/terraform.sh | |
fi | |
- name: Check Format | |
run: terraform fmt -check -recursive -diff |