From ec2518b2a7b079149966e0ade75afd158af36985 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 06:17:33 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 in the github-actions group Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-ultraplot.yml | 2 +- .github/workflows/main.yml | 2 +- .github/workflows/test-map.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-ultraplot.yml b/.github/workflows/build-ultraplot.yml index 3fe69c1d9..a021725c3 100644 --- a/.github/workflows/build-ultraplot.yml +++ b/.github/workflows/build-ultraplot.yml @@ -84,7 +84,7 @@ jobs: # Cache Baseline Figures (Restore step) - name: Cache Baseline Figures id: cache-baseline - uses: actions/cache@v4 + uses: actions/cache@v5 if: ${{ env.IS_PR }} with: path: ./ultraplot/tests/baseline # The directory to cache diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd9cbdc46..e2771a443 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,7 +37,7 @@ jobs: - name: Restore test map cache id: restore-map - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .ci/test-map.json key: test-map-v2-${{ github.event.pull_request.base.sha }} diff --git a/.github/workflows/test-map.yml b/.github/workflows/test-map.yml index a1e9ff107..5763eecbf 100644 --- a/.github/workflows/test-map.yml +++ b/.github/workflows/test-map.yml @@ -40,7 +40,7 @@ jobs: python tools/ci/build_test_map.py --coverage-file .coverage --output .ci/test-map.json --root . - name: Cache test map - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .ci/test-map.json key: test-map-${{ github.sha }}