From 5928fdf82ca0c83fe050f9a84a7b76d130a5f164 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Wed, 12 Oct 2022 21:57:36 +0300 Subject: [PATCH] CI: Bump cache key version This is needed due to pip changes - sphinx and recommonmark are not cached, and this leads to extra work during setup. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da30d5e..0f9fd97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,10 +48,10 @@ jobs: # This path is specific to Ubuntu path: ~/.cache/pip # Look to see if there is a cache hit for the corresponding requirements file - key: v1-pip-${{ runner.os }}-${{ matrix.python-version }} + key: v2-pip-${{ runner.os }}-${{ matrix.python-version }} restore-keys: | - v1-pip-${{ runner.os }} - v1-pip- + v2-pip-${{ runner.os }} + v2-pip- - name: Install dependencies run: | -- 2.39.2