From 9a874631e886724dcd041fafd7f3d641eb40c0c1 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 29 Oct 2024 14:48:33 -0400 Subject: [PATCH] cicd: fixing action caching --- .github/workflows/python-cqa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-cqa.yml b/.github/workflows/python-cqa.yml index ac04a7a6..02a2b724 100644 --- a/.github/workflows/python-cqa.yml +++ b/.github/workflows/python-cqa.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/cache@v4 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} restore-keys: | ${{ runner.os }}-pip- - name: Set up Python ${{ matrix.python-version }}