From 9211a0ddba006dfbf67794ef41342cffc167fc98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 03:52:30 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 746f0b45..e2cf25ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: - name: Get yarn cache dir run: echo "yarn_cache=$(yarn cache dir)" >> "$GITHUB_ENV" - name: Cache node modules - uses: actions/cache@v5 + uses: actions/cache@v6 id: cache_node_modules with: key: node-${{ hashFiles('admin-js/package.json') }}-${{ github.run_id }} @@ -80,7 +80,7 @@ jobs: run: yarn install --production working-directory: admin-js/ - name: Cache output files - uses: actions/cache@v5 + uses: actions/cache@v6 id: cache_admin_js with: key: yarn-${{ hashFiles('admin-js/src/*') }}-${{ hashFiles('admin-js/yarn.lock') }} @@ -113,7 +113,7 @@ jobs: cache: 'pip' cache-dependency-path: '**/requirements*.txt' - name: Restore cached JS files - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: yarn-${{ hashFiles('admin-js/src/*') }} fail-on-cache-miss: true @@ -155,7 +155,7 @@ jobs: - name: Get yarn cache dir run: echo "yarn_cache=$(yarn cache dir)" >> "$GITHUB_ENV" - name: Cache node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: key: node-${{ hashFiles('admin-js/package.json') }}-${{ github.run_id }} restore-keys: node-${{ hashFiles('admin-js/package.json') }} @@ -172,7 +172,7 @@ jobs: cache: 'pip' cache-dependency-path: '**/requirements*.txt' - name: Restore cached JS files - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: yarn-${{ hashFiles('admin-js/src/*') }} fail-on-cache-miss: true