From 000c4c64286a4cd23c955514182e0d828e4783cd Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Fri, 27 Mar 2020 17:13:24 -0300 Subject: [PATCH] Fixed checks.yml hashFiles not using the correct glob pattern This project requirements files are named .txt and .dev --- .github/workflows/checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0906312e0..c00b1b809 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -97,7 +97,7 @@ jobs: uses: actions/cache@v1 with: path: ${{ github.workspace }}${{ matrix.SEP }}pyenv - key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14- + key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.*') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14- - name: Cache pip wheels if: matrix.BUILD_TYPE == 'build'