From 154ab354268bab0431e353a1b8715c9daaa78f75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 17:13:32 +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] --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 5d938f4..ba655b6 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ runs: - name: Cache pip dependencies on Linux if: ${{ startsWith(runner.os, 'Linux') }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }} @@ -30,7 +30,7 @@ runs: - name: Cache pip dependencies on macOS if: ${{ startsWith(runner.os, 'macOS') }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/Library/Caches/pip key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }} @@ -39,7 +39,7 @@ runs: - name: Cache pip dependencies on Windows if: ${{ startsWith(runner.os, 'Windows') }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }}