From db69f755e513fd4fc86d4808cf31e8ca3e3b3ff6 Mon Sep 17 00:00:00 2001 From: Olivier Bieler Date: Tue, 17 Sep 2024 15:43:20 +0200 Subject: [PATCH] Try fix GH action/cache with py27 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe8efbc..33426ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false max-parallel: 5 @@ -37,7 +37,7 @@ jobs: - name: Cache uses: actions/cache@v2 with: - path: ${{ steps.pip-cache.outputs.dir }} + path: ~/.cache/pip key: ${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }} restore-keys: |