From fe64a18d2d4e654e583d168c7e7916d00e0e8e3c Mon Sep 17 00:00:00 2001 From: "Grayson, Matthew" Date: Wed, 13 Mar 2024 15:32:10 -0500 Subject: [PATCH] Add missing quotes around file path for hashFiles method on line 117 of .github/workflows/backend.yml. --- .github/workflows/backend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 75a97a1b..8fb5ba75 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -114,7 +114,7 @@ jobs: - uses: actions/cache@v3 with: path: ~/.cache/pip - key: pip-${{ hashFiles(**/requirements.txt) }} + key: pip-${{ hashFiles('**/requirements.txt') }} restore-keys: pip- - run: pip install -r worker/requirements.txt - run: pytest