From b2c01d7d15954d968358dc2a003503031fa25137 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 13 Mar 2024 22:04:55 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .gitea/workflows/tf-apply.yml | 4 ++-- .gitea/workflows/tf-plan.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/tf-apply.yml b/.gitea/workflows/tf-apply.yml index 6f3e1fe..1945fd1 100644 --- a/.gitea/workflows/tf-apply.yml +++ b/.gitea/workflows/tf-apply.yml @@ -71,7 +71,7 @@ jobs: known-hosts: ${{ secrets.ssh-known-hosts }} - name: Restore terraform cache if: ${{ steps.check.outputs.code == 2 }} - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-terraform-restore with: path: .terraform @@ -91,7 +91,7 @@ jobs: run: terraform apply -input=false -auto-approve tfplan.binary; - name: Save terraform cache if: ${{ steps.check.outputs.code == 2 }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 id: cache-terraform-save with: path: .terraform diff --git a/.gitea/workflows/tf-plan.yml b/.gitea/workflows/tf-plan.yml index b7e76d4..dd864af 100644 --- a/.gitea/workflows/tf-plan.yml +++ b/.gitea/workflows/tf-plan.yml @@ -52,7 +52,7 @@ jobs: private-key-name: id_ed25519 known-hosts: ${{ secrets.ssh-known-hosts }} - name: Restore terraform cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-terraform-restore with: path: .terraform @@ -85,7 +85,7 @@ jobs: exit 1; fi - name: Save terraform cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 id: cache-terraform-save with: path: .terraform