From 19378f760159da5e93b52a550cc3d8c9831bc52a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 23:21:10 +0000 Subject: [PATCH] Update actions/cache action to v6 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d642fab3..4bae87f67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: with: node-version: 24.19.0 - name: Cache node modules - uses: actions/cache@v5.1.0 + uses: actions/cache@v6.1.0 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -43,7 +43,7 @@ jobs: with: node-version: 24.19.0 - name: Cache node modules - uses: actions/cache@v5.1.0 + uses: actions/cache@v6.1.0 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -62,7 +62,7 @@ jobs: with: node-version: 24.19.0 - name: Cache node modules - uses: actions/cache@v5.1.0 + uses: actions/cache@v6.1.0 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -82,7 +82,7 @@ jobs: with: node-version: 24.19.0 - name: Cache node modules - uses: actions/cache@v5.1.0 + uses: actions/cache@v6.1.0 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -92,7 +92,7 @@ jobs: # Chromium is not in the npm install: Playwright downloads browsers # separately, into a cache keyed by Playwright version. - name: Cache Playwright browsers - uses: actions/cache@v5.1.0 + uses: actions/cache@v6.1.0 with: path: ~/.cache/ms-playwright key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}