diff --git a/.gitea/workflows/otf-apply.yml b/.gitea/workflows/otf-apply.yml index a6a547d..fb76ea3 100644 --- a/.gitea/workflows/otf-apply.yml +++ b/.gitea/workflows/otf-apply.yml @@ -76,7 +76,7 @@ jobs: known-hosts: ${{ secrets.ssh-known-hosts }} - name: Restore tofu cache if: ${{ steps.check.outputs.code == 2 }} - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-tofu-restore with: path: .terraform @@ -96,7 +96,7 @@ jobs: run: tofu apply -input=false -auto-approve tfplan.binary; - name: Save tofu cache if: ${{ steps.check.outputs.code == 2 }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 id: cache-tofu-save with: path: .terraform diff --git a/.gitea/workflows/otf-plan.yml b/.gitea/workflows/otf-plan.yml index f88f74c..afdaaed 100644 --- a/.gitea/workflows/otf-plan.yml +++ b/.gitea/workflows/otf-plan.yml @@ -57,7 +57,7 @@ jobs: private-key-name: id_ed25519 known-hosts: ${{ secrets.ssh-known-hosts }} - name: Restore tofu cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-tofu-restore with: path: .terraform @@ -90,7 +90,7 @@ jobs: exit 1; fi - name: Save tofu cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 id: cache-tofu-save with: path: .terraform diff --git a/.gitea/workflows/tf-apply.yml b/.gitea/workflows/tf-apply.yml index aa1b14b..d07c398 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@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache/save@v5 id: cache-terraform-save with: path: .terraform diff --git a/.gitea/workflows/tf-plan.yml b/.gitea/workflows/tf-plan.yml index 571ae5a..3f4743c 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@v4 + uses: actions/cache@v5 id: cache-terraform-restore with: path: .terraform @@ -85,7 +85,7 @@ jobs: exit 1; fi - name: Save terraform cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 id: cache-terraform-save with: path: .terraform