chore(deps): update terraform cloudflare to v5.11.0 #319
This file contains hidden or 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: CI | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.7.x | |
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} | |
- name: Check terraform format | |
run: terraform fmt -recursive -check -no-color | |
- name: Run terraform init | |
run: terraform init -upgrade -no-color | |
- name: Check terraform validate | |
run: terraform validate -no-color |