From 2501e36b15d62b87a78140b957387ecb28628bb2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 12:06:15 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/lint-check.yml | 4 ++-- .github/workflows/test-coverage.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 3141a97b..9317d74f 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -40,7 +40,7 @@ jobs: cache-dependency-path: 'pyproject.toml' - name: Cache system dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /var/cache/apt key: ${{ runner.os }}-apt-copilot-${{ hashFiles('scripts/install-deps.sh') }} diff --git a/.github/workflows/lint-check.yml b/.github/workflows/lint-check.yml index 2793ec44..6a696911 100644 --- a/.github/workflows/lint-check.yml +++ b/.github/workflows/lint-check.yml @@ -32,7 +32,7 @@ jobs: cache-dependency-path: 'pyproject.toml' - name: 'Cache system dependencies' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /var/cache/apt key: ${{ runner.os }}-apt-lint-${{ hashFiles('scripts/install-deps.sh') }} @@ -73,7 +73,7 @@ jobs: cache-dependency-path: 'pyproject.toml' - name: 'Cache system dependencies' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /var/cache/apt key: ${{ runner.os }}-apt-lint-${{ hashFiles('scripts/install-deps.sh') }} diff --git a/.github/workflows/test-coverage.yml b/.github/workflows/test-coverage.yml index cbac7ede..858dbb59 100644 --- a/.github/workflows/test-coverage.yml +++ b/.github/workflows/test-coverage.yml @@ -145,14 +145,14 @@ jobs: # don't require a token when not pushing pages - name: Upload benchmark baseline cache - uses: actions/cache@v4 + uses: actions/cache@v5 if: github.event_name == 'push' && github.ref == 'refs/heads/main' with: path: ./cache key: ${{ runner.os }}-benchmark - name: Download previous benchmark data - uses: actions/cache@v4 + uses: actions/cache@v5 if: github.event_name == 'pull_request' with: path: ./cache @@ -383,7 +383,7 @@ jobs: pip install -e ".[test]" - name: Cache Playwright browsers - uses: actions/cache@v4 + uses: actions/cache@v5 id: playwright-cache with: path: ~/.cache/ms-playwright