From 5523b66f40e5061c11fad568b9c998787c92ea08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 22:35:12 +0000 Subject: [PATCH] [GHA] 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/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 04f3e96..a4d5c63 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: "ubuntu-latest" steps: - uses: "actions/checkout@v4" - - uses: "actions/cache@v4" + - uses: "actions/cache@v5" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1542405..293fead 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - "3.12" steps: - uses: "actions/checkout@v4" - - uses: "actions/cache@v4" + - uses: "actions/cache@v5" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 258b003..652254a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: python: "3.11" steps: - uses: "actions/checkout@v4" - - uses: "actions/cache@v4" + - uses: "actions/cache@v5" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}"