From 6078a0c4a2865e970955e458d1ce37b631bb9844 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 05:03:48 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 8 ++++---- .github/workflows/plan.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e5f93ea..a2b429b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,7 +27,7 @@ jobs: uses: hashicorp/setup-terraform@v3 - name: Restore Terraform Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | .terraform @@ -40,7 +40,7 @@ jobs: run: terraform init -input=false - name: Save Terraform Cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | .terraform @@ -48,7 +48,7 @@ jobs: key: terraform - name: Restore Defaults Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: defaults.yaml key: defaults @@ -62,7 +62,7 @@ jobs: run: terraform apply -input=false -auto-approve - name: Save Defaults Cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: defaults.yaml key: defaults diff --git a/.github/workflows/plan.yml b/.github/workflows/plan.yml index e5632e3..1b01cb5 100644 --- a/.github/workflows/plan.yml +++ b/.github/workflows/plan.yml @@ -18,7 +18,7 @@ jobs: uses: hashicorp/setup-terraform@v3 - name: Restore Terraform Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | .terraform @@ -31,7 +31,7 @@ jobs: run: terraform init -input=false - name: Save Terraform Cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | .terraform @@ -39,7 +39,7 @@ jobs: key: terraform - name: Restore Defaults Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: defaults.yaml key: defaults