From cb4a64bcf4013ba5689d67d837fcd58dbda1e282 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Thu, 29 Oct 2020 13:40:23 +0100 Subject: [PATCH] Don't need to glob for requirements file, there is only one --- .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 80316544a..7b4e7ffcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: uses: actions/cache@v2 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} restore-keys: | ${{ runner.os }}-pip-