From 137c69e776fc76c9e05312d6883ad71490de96a8 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Sun, 26 Feb 2023 11:30:11 -0600 Subject: [PATCH] Revert "Cache downloads" This reverts commit 5276c53a06689db1e4f68e0120a1423b253f3245. --- .github/workflows/release.yaml | 8 ++------ .github/workflows/tutorials.yaml | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 751cf5e1d..e5dd19ecc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,8 +55,6 @@ jobs: run: pytest -m slow --durations=10 notebooks: name: notebooks - env: - TMPDIR: ${{ runner.temp }} runs-on: ubuntu-latest steps: - name: Clone repo @@ -69,10 +67,8 @@ jobs: uses: actions/cache@v3.2.5 id: cache with: - path: | - ${{ env.pythonLocation }} - ${{ runner.temp }} - key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }} + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }} - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: | diff --git a/.github/workflows/tutorials.yaml b/.github/workflows/tutorials.yaml index d62d848bf..6bdfa2e2b 100644 --- a/.github/workflows/tutorials.yaml +++ b/.github/workflows/tutorials.yaml @@ -13,8 +13,6 @@ on: jobs: notebooks: name: notebooks - env: - TMPDIR: ${{ runner.temp }} runs-on: ubuntu-latest steps: - name: Clone repo @@ -27,10 +25,8 @@ jobs: uses: actions/cache@v3.2.4 id: cache with: - path: | - ${{ env.pythonLocation }} - ${{ runner.temp }} - key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }} + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }} - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: |