Skip to content

chore(deps): bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /test #81

chore(deps): bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /test

chore(deps): bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /test #81

Workflow file for this run

name: Terraform Lint
permissions:
contents: read
on:
pull_request:
branches:
- main
jobs:
terraform-lint:
name: Lint Terraform code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.0.0
- name: Terraform Init
id: init
run: terraform init -input=false
- name: Terraform Format Check
id: fmt
run: terraform fmt -check -recursive
continue-on-error: true
- name: Terraform Format Diff
if: failure()
run: terraform fmt -diff -recursive
- name: Terraform Validate (Example)
run: |
cd example
terraform init -input=false
terraform validate