Skip to content

feat: Update versions of third party docker images #258

feat: Update versions of third party docker images

feat: Update versions of third party docker images #258

Workflow file for this run

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