From 93fc629706e8c29b5af7e4c3e60613131f46eee0 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Fri, 24 Apr 2026 17:11:54 +1000 Subject: [PATCH] create the terraform cache dir first --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4b2bac7..8c4eee54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -223,6 +223,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Create Terraform plugin cache dir + run: mkdir -p ~/.terraform.d/plugin-cache + - name: Cache Terraform plugins uses: actions/cache@v4 with: @@ -230,9 +233,6 @@ jobs: key: terraform-google-${{ hashFiles(format('{0}/.terraform.lock.hcl', env.TF_DIR)) }} restore-keys: terraform-google- - - name: Create Terraform plugin cache dir - run: mkdir -p ~/.terraform.d/plugin-cache - - name: Authenticate to GCP uses: google-github-actions/auth@v2 with: