From a8c4688c896d24807aca1c6b82e8728d3ff394aa Mon Sep 17 00:00:00 2001 From: -akku- <151517253+akku1139@users.noreply.github.com> Date: Sat, 24 Aug 2024 00:53:17 +0900 Subject: [PATCH] better cache --- .github/workflows/make.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 44ce671..554d770 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -17,12 +17,12 @@ jobs: - uses: actions/cache@v4 id: pip-cache with: - path: ~/.local/lib/python3.10 + path: ~/.cache/pip key: pip-cache-${{ hashFiles('scripts/requirements.txt') }} restore-keys: pip-cache- - name: Install Dependencies - if: steps.pip-cache.outputs.cache-hit != 'true' + # if: steps.pip-cache.outputs.cache-hit != 'true' run: pip install -r ./scripts/requirements.txt - name: Make