diff options
author | Martin Vilcans <martin@librador.com> | 2022-11-07 20:29:53 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2022-11-07 20:29:53 +0100 |
commit | b08119fbfec9b3baaed32107a846c93cec339d57 (patch) | |
tree | 517b7083cf91af7c2b2ca260bd7d6b57c1e456e3 /.github | |
parent | a5e9a811489d60697eb886437103c333438fff78 (diff) | |
download | screenplain-b08119fbfec9b3baaed32107a846c93cec339d57.tar.gz |
Github actions: "pip" is not the cache key apparently
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/python-package.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 01a76a6..099c42a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - cache: pip_${{ matrix.python-version }} + cache: "pip" - name: Install dependencies run: | python -m pip install --upgrade pip |