From 7ed5bad55e39a949179c6a548e11087b2dbe600d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:39:13 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 190f59cf1..2c9909542 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: run: pnpm build --all -t - name: Cache dist - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: packages/*/dist key: build-vue-i18n-next-os-${{ matrix.os }}-${{ github.sha }} @@ -172,7 +172,7 @@ jobs: run: echo "PLAYWRIGHT_BROWSERS_PATH=$HOME\.cache\playwright-bin" >> $env:GITHUB_ENV - name: Cache Playwright's binary - uses: actions/cache@v3 + uses: actions/cache@v4 with: # Playwright removes unused browsers automatically # So does not need to add playwright version to key @@ -184,7 +184,7 @@ jobs: run: pnpm playwright install chromium - name: Restore dist cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: packages/*/dist key: build-vue-i18n-next-os-${{ matrix.os }}-${{ github.sha }} @@ -230,7 +230,7 @@ jobs: run: pnpm install --no-frozen-lockfile - name: Restore dist cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: packages/*/dist key: build-vue-i18n-next-os-${{ matrix.os }}-${{ github.sha }}