We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f0b097 commit 663b132Copy full SHA for 663b132
1 file changed
.github/workflows/test.yml
@@ -23,12 +23,12 @@ jobs:
23
- name: Get pip cache dir
24
id: pip-cache
25
run: |
26
- echo "::set-output name=dir::$(pip cache dir)"
+ echo "PIP_CACHE_DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
27
28
- name: Cache
29
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
30
with:
31
- path: ${{ steps.pip-cache.outputs.dir }}
+ path: ${{ steps.pip-cache.outputs.PIP_CACHE_DIR }}
32
key:
33
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
34
restore-keys: |
0 commit comments