From 58e18ff0e42248d56037349f9b14c47557e176ec Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sat, 15 Feb 2020 11:13:22 +0100 Subject: [PATCH] Disable caching for pip dependencies --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb6d0a12..4b9efb7f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,14 +80,14 @@ jobs: with: python-version: 3.x - - uses: actions/cache@v1 - id: cache-python - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + # - uses: actions/cache@v1 + # id: cache-python + # with: + # path: ~/.cache/pip + # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - - if: steps.cache-python.outputs.cache-hit != 'true' - run: pip install -r requirements.txt + # - if: steps.cache-python.outputs.cache-hit != 'true' + - run: pip install -r requirements.txt # Set configuration for repository and deploy documentation - env: