diff --git a/.github/workflows/deploy-live.yml b/.github/workflows/deploy-live.yml index acf99d9..3efc33b 100644 --- a/.github/workflows/deploy-live.yml +++ b/.github/workflows/deploy-live.yml @@ -96,7 +96,7 @@ jobs: git config core.quotepath false - name: Cache restore id: cache-restore - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ runner.temp }}/hugo_cache key: hugo-${{ github.run_id }} @@ -111,7 +111,7 @@ jobs: --cacheDir "${{ runner.temp }}/hugo_cache" - name: Cache save id: cache-save - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ runner.temp }}/hugo_cache key: ${{ steps.cache-restore.outputs.cache-primary-key }} diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 608a5a2..84d1d4f 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -75,7 +75,7 @@ jobs: git config core.quotepath false - name: Cache restore id: cache-restore - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ runner.temp }}/hugo_cache key: hugo-${{ github.run_id }} @@ -90,7 +90,7 @@ jobs: --cacheDir "${{ runner.temp }}/hugo_cache" - name: Cache save id: cache-save - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ runner.temp }}/hugo_cache key: ${{ steps.cache-restore.outputs.cache-primary-key }}