chore(deps): update actions/cache action to v5 #24

Merged
palkx merged 1 commits from renovate/actions-cache-5.x into main 2026-01-03 17:38:42 +02:00
4 changed files with 8 additions and 8 deletions

View File

@@ -76,7 +76,7 @@ jobs:
known-hosts: ${{ secrets.ssh-known-hosts }} known-hosts: ${{ secrets.ssh-known-hosts }}
- name: Restore tofu cache - name: Restore tofu cache
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
uses: actions/cache@v4 uses: actions/cache@v5
id: cache-tofu-restore id: cache-tofu-restore
with: with:
path: .terraform path: .terraform
@@ -96,7 +96,7 @@ jobs:
run: tofu apply -input=false -auto-approve tfplan.binary; run: tofu apply -input=false -auto-approve tfplan.binary;
- name: Save tofu cache - name: Save tofu cache
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
uses: actions/cache/save@v4 uses: actions/cache/save@v5
id: cache-tofu-save id: cache-tofu-save
with: with:
path: .terraform path: .terraform

View File

@@ -57,7 +57,7 @@ jobs:
private-key-name: id_ed25519 private-key-name: id_ed25519
known-hosts: ${{ secrets.ssh-known-hosts }} known-hosts: ${{ secrets.ssh-known-hosts }}
- name: Restore tofu cache - name: Restore tofu cache
uses: actions/cache@v4 uses: actions/cache@v5
id: cache-tofu-restore id: cache-tofu-restore
with: with:
path: .terraform path: .terraform
@@ -90,7 +90,7 @@ jobs:
exit 1; exit 1;
fi fi
- name: Save tofu cache - name: Save tofu cache
uses: actions/cache/save@v4 uses: actions/cache/save@v5
id: cache-tofu-save id: cache-tofu-save
with: with:
path: .terraform path: .terraform

View File

@@ -71,7 +71,7 @@ jobs:
known-hosts: ${{ secrets.ssh-known-hosts }} known-hosts: ${{ secrets.ssh-known-hosts }}
- name: Restore terraform cache - name: Restore terraform cache
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
uses: actions/cache@v4 uses: actions/cache@v5
id: cache-terraform-restore id: cache-terraform-restore
with: with:
path: .terraform path: .terraform
@@ -91,7 +91,7 @@ jobs:
run: terraform apply -input=false -auto-approve tfplan.binary; run: terraform apply -input=false -auto-approve tfplan.binary;
- name: Save terraform cache - name: Save terraform cache
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
uses: actions/cache/save@v4 uses: actions/cache/save@v5
id: cache-terraform-save id: cache-terraform-save
with: with:
path: .terraform path: .terraform

View File

@@ -52,7 +52,7 @@ jobs:
private-key-name: id_ed25519 private-key-name: id_ed25519
known-hosts: ${{ secrets.ssh-known-hosts }} known-hosts: ${{ secrets.ssh-known-hosts }}
- name: Restore terraform cache - name: Restore terraform cache
uses: actions/cache@v4 uses: actions/cache@v5
id: cache-terraform-restore id: cache-terraform-restore
with: with:
path: .terraform path: .terraform
@@ -85,7 +85,7 @@ jobs:
exit 1; exit 1;
fi fi
- name: Save terraform cache - name: Save terraform cache
uses: actions/cache/save@v4 uses: actions/cache/save@v5
id: cache-terraform-save id: cache-terraform-save
with: with:
path: .terraform path: .terraform