From c06f21146ba4c0f37058841090a31af0e3a555f2 Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Tue, 21 Dec 2021 22:10:30 +0000 Subject: [PATCH] Fix poetry cache using the wrong file --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eadbbd13..bdf11e61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: - uses: actions/cache@v2 with: path: ~/.cache/pip - key: ${{ runner.os }}-python-${{ hashFiles('**/poetry.lock') }} + key: ${{ runner.os }}-python-${{ hashFiles('**/pyproject.toml') }} restore-keys: | ${{ runner.os }}-python- - run: |