From a7627c42cc1a36116ff833381632a2dae2f5310e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 11:09:32 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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/v2...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yaml | 2 +- .github/workflows/python-checks.yaml | 2 +- .github/workflows/unit-tests.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 38f6e9d..ab4bd9b 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -30,7 +30,7 @@ jobs: - 5432:5432 steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.11 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/python-checks.yaml b/.github/workflows/python-checks.yaml index e802c72..7fe42d2 100644 --- a/.github/workflows/python-checks.yaml +++ b/.github/workflows/python-checks.yaml @@ -34,7 +34,7 @@ jobs: with: python-version: '3.9' - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.11 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index f9ab901..9183868 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -26,7 +26,7 @@ jobs: - 5432:5432 steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.11 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}