Skip to content

chore(deps): Bump cloudflare/cloudflare from 5.13.0 to 5.14.0 #57

chore(deps): Bump cloudflare/cloudflare from 5.13.0 to 5.14.0

chore(deps): Bump cloudflare/cloudflare from 5.13.0 to 5.14.0 #57

Workflow file for this run

name: Continuous Integration - Tests
on:
push:
paths:
- ".github/workflows/tests.yml"
- "**/*.tf"
- "**/*.tfvars"
- "**/*.hcl"
pull_request:
paths:
- ".github/workflows/tests.yml"
- "**/*.tf"
- "**/*.tfvars"
- "**/*.hcl"
workflow_dispatch:
concurrency:
group: tests-${{ github.ref_name }}
cancel-in-progress: true
env:
TF_PLAN: terraform.plan
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.0
- name: Install Brioche
uses: brioche-dev/setup-brioche@v1.5.0
- name: Install Terraform
run: brioche install -r terraform
- name: Cache terraform registry
uses: actions/cache@v4.3.0
with:
path: |
.terraform
key: tests-${{ hashFiles('**/.terraform.lock.hcl') }}
- name: Generate the plan of Terraform
env:
CLOUDFLARE_API_KEY: ${{ secrets.CLOUDFLARE_API_KEY }}
CLOUDFLARE_EMAIL: ${{ secrets.CLOUDFLARE_EMAIL }}
TF_VAR_crates_io_api_token: ${{ secrets.TF_VAR_CRATES_IO_API_TOKEN }}
run: |
terraform init -backend-config=access_key=${{ secrets.BACKEND_ACCESS_KEY }} -backend-config=secret_key=${{ secrets.BACKEND_SECRET_KEY }}
terraform plan -out "$TF_PLAN"