From 84a846eca1c95d98b6da7042550fa60bf2f2f452 Mon Sep 17 00:00:00 2001 From: David Schmitt Date: Fri, 13 Dec 2024 15:21:34 +0100 Subject: [PATCH] Update to actions/cache@v4 --- .github/workflows/e2e.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 1d87921..35e2d0b 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: Cache Terraform Providers id: cache-terraform - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .terraform key: ${{ runner.os }}-${{ inputs.environment }}-${{ hashFiles('**/.terraform.lock.hcl') }} @@ -94,7 +94,7 @@ jobs: steps: - name: Cache Terraform Providers id: cache-terraform - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .terraform key: ${{ runner.os }}-${{ inputs.environment }}-${{ hashFiles('**/.terraform.lock.hcl') }}