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