From 89e061ca04d174df6d0d2289906e2967485a4fee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 05:11:24 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2d817909a..c3ff3d1bf 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -106,7 +106,7 @@ jobs: # Action Repo: https://github.com/actions/cache - name: "Stage 0: Cache pip dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: python-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/*requirements.txt') }} @@ -257,7 +257,7 @@ jobs: # Action Repo: https://github.com/actions/cache - name: "Stage 0: Cache pip dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: python-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/*requirements.txt') }}