diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 751cf5e1df1..e5dd19ecc7a 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 d62d848bfe5..6bdfa2e2b06 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: |