From 8316aacdd99ea1dcb57012f3728cbd75a6fa2675 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:25:01 +0000 Subject: [PATCH] chore(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/pre-commit.yml | 2 +- .github/workflows/validate-notebooks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 0a5663fa..061f0ad6 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -48,7 +48,7 @@ jobs: pip install -r requirements-dev.txt - name: Cache pre-commit environments - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}-${{ hashFiles('requirements-dev.txt') }} diff --git a/.github/workflows/validate-notebooks.yml b/.github/workflows/validate-notebooks.yml index 03dadd21..9f3eeb90 100644 --- a/.github/workflows/validate-notebooks.yml +++ b/.github/workflows/validate-notebooks.yml @@ -33,7 +33,7 @@ jobs: cache: 'pip' - name: Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: nbqa-${{ runner.os }}-${{ hashFiles('.github/workflows/notebook-lint-requirements.txt') }}