From 6e5807441f3579925f9ee3f4917db4965bc5d0a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:36:15 +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/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 c86ba57..b659784 100644 --- a/.github/workflows/buildOnly.yml +++ b/.github/workflows/buildOnly.yml @@ -12,7 +12,7 @@ jobs: with: python-version: 3.8 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/publishAndBuild.yml b/.github/workflows/publishAndBuild.yml index 4dad17d..5740732 100644 --- a/.github/workflows/publishAndBuild.yml +++ b/.github/workflows/publishAndBuild.yml @@ -14,7 +14,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: 3.8 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}