We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d33ab03 + 96033b2 commit e6fba72Copy full SHA for e6fba72
.github/workflows/test.yml
@@ -36,13 +36,14 @@ jobs:
36
37
- name: Get pip cache dir
38
id: pip-cache
39
+ shell: bash
40
run: |
- echo "::set-output name=dir::$(pip cache dir)"
41
+ echo "PIP_DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
42
43
- name: Cache
44
uses: actions/cache@v3
45
with:
- path: ${{ steps.pip-cache.outputs.dir }}
46
+ path: ${{ steps.pip-cache.outputs.PIP_DIR }}
47
key:
48
${{ matrix.os }}-${{ matrix.python-version }}-v1-${{ hashFiles('**/tox.ini') }}
49
restore-keys: |
0 commit comments