From 1de77ea81c1d2d69af7bf51cd5c0872339a8f8e7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 08:21:48 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/merge.yml | 2 +- .github/workflows/pullrequest.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 1e03ad5d..2f0c9cc8 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache virtualenvironment - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.venv key: ${{ hashFiles('requirements.txt', 'requirements-dev.txt') }} diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index ee03562d..29fb954f 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache virtualenvironment - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.venv key: ${{ hashFiles('requirements.txt', 'requirements-dev.txt') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d6c4589..ae66bcf8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache virtualenvironment - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.venv key: ${{ hashFiles('requirements.txt', 'requirements-dev.txt') }}