Skip to content

chore(deps): update github actions to v6 (major) #33

chore(deps): update github actions to v6 (major)

chore(deps): update github actions to v6 (major) #33

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
format:
name: Format
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version-file: 'go.mod'
cache: true
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3
with:
terraform_wrapper: false
- run: make format
- name: Check for changes
run: git diff HEAD --exit-code --color