From 5f83f63231050e12ab7f8d1ab3e8480cc1187e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joscha=20G=C3=B6tzer?= Date: Mon, 26 Oct 2020 00:59:31 +0100 Subject: [PATCH] Do not include the poetry lock file in the GH actions cache key --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc8b667..683bc28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,8 @@ jobs: uses: actions/cache@v1 with: path: .venv - key: venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} +# key: venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} + key: venv-${{ matrix.python-version }} - name: Poetry install run: poetry install - name: Show outdated packages