From 5d02a3173ccdccdacd2ee66321b44804c962e46c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 11:08:34 +0000 Subject: [PATCH] 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/buildOnly.yml | 2 +- .github/workflows/publishAndBuild.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildOnly.yml b/.github/workflows/buildOnly.yml index 199f84c..9564bcd 100644 --- a/.github/workflows/buildOnly.yml +++ b/.github/workflows/buildOnly.yml @@ -12,7 +12,7 @@ jobs: with: python-version: 3.8 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/publishAndBuild.yml b/.github/workflows/publishAndBuild.yml index 2358fb9..abf728b 100644 --- a/.github/workflows/publishAndBuild.yml +++ b/.github/workflows/publishAndBuild.yml @@ -14,7 +14,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: 3.8 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}