From c05b0e77607d39c818f977167503a3b8afa4d25a Mon Sep 17 00:00:00 2001 From: purificant Date: Sun, 10 Oct 2021 00:45:29 +0100 Subject: [PATCH] use latest version of pip (#2846) --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0beff60427..5fafe82176 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -103,7 +103,9 @@ jobs: key: python-dependencies-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements-ci.txt') }}-${{ env.pythonLocation }} - name: Install dependencies on cache miss - run: pip install --upgrade --requirement requirements-ci.txt + run: | + pip install --no-cache-dir --upgrade pip + pip install --no-cache-dir --upgrade --requirement requirements-ci.txt if: steps.restore-cache.outputs.cache-hit != 'true' - name: Use cached nltk data