From ff87855aa9d9d94e149e917eb6eb1f8e2950b489 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 14:15:41 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/build-and-test-on-pr.yml | 8 ++++---- .github/workflows/build-test-publish-on-push.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-and-test-on-pr.yml b/.github/workflows/build-and-test-on-pr.yml index 376111382..9b36c476f 100644 --- a/.github/workflows/build-and-test-on-pr.yml +++ b/.github/workflows/build-and-test-on-pr.yml @@ -20,7 +20,7 @@ jobs: - run: pnpm install - run: pnpm build - name: 'Save build output' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -46,7 +46,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -98,7 +98,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -123,7 +123,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} diff --git a/.github/workflows/build-test-publish-on-push.yml b/.github/workflows/build-test-publish-on-push.yml index f0b1a4a85..62962d84e 100644 --- a/.github/workflows/build-test-publish-on-push.yml +++ b/.github/workflows/build-test-publish-on-push.yml @@ -28,7 +28,7 @@ jobs: - run: pnpm install - run: pnpm build - name: 'Save build output' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -54,7 +54,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -107,7 +107,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -132,7 +132,7 @@ jobs: version: 8 - run: pnpm add -g pnpm - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }} @@ -176,7 +176,7 @@ jobs: cache: 'pnpm' - name: 'Restore build output' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }} key: ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}