From 5e2a241aa55dd27ae22a0a482fd2b206e8c08254 Mon Sep 17 00:00:00 2001 From: taiga-family-bot <140712314+taiga-family-bot@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:48:52 +0300 Subject: [PATCH] chore: update actions/cache action to v4.2.0 (#9926) --- .github/workflows/e2e.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a27634f7bbb7..1101f5327184 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -24,7 +24,7 @@ jobs: run: npx nx build demo # Don't use prerender please, because it's flaky for e2e - name: Upload cache / ${{ env.CACHE_DIST_KEY }} - uses: actions/cache/save@v4.1.2 + uses: actions/cache/save@v4.2.0 with: path: dist/demo key: ${{ env.CACHE_DIST_KEY }} @@ -119,7 +119,7 @@ jobs: run: | echo "PLAYWRIGHT_VERSION=$(node -p 'require("./projects/demo-playwright/package.json").devDependencies["@playwright/test"]')" >> $GITHUB_ENV - - uses: actions/cache/restore@v4.1.2 + - uses: actions/cache/restore@v4.2.0 id: playwright-cache with: path: | @@ -133,7 +133,7 @@ jobs: if: steps.playwright-cache.outputs.cache-hit != 'true' - name: Download cache / ${{ env.CACHE_DIST_KEY }} - uses: actions/cache/restore@v4.1.2 + uses: actions/cache/restore@v4.2.0 with: path: dist/demo key: ${{ env.CACHE_DIST_KEY }}