From 0c2b564dbd3f62fdc4716322f93644ba7f176db9 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Tue, 18 Oct 2022 01:13:54 +0100 Subject: [PATCH] Bump cache action to include https://github.com/actions/cache/pull/950 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index ebc02d5..1da0b3e 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ runs: - name: Restore/cache poetry installation id: poetry-install-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.site-user-base.outputs.dir }} key: poetry-install-cache-${{ steps.setup-python.outputs.python-version }}-${{ inputs.poetry-version }} @@ -64,7 +64,7 @@ runs: - name: Restore/cache poetry venv id: poetry-venv-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.poetry-venvs.outputs.dir }} key: poetry-venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ inputs.extras }}