Skip to content

Commit e6fba72

Browse files
authored
Merge pull request #371 from dloez/fix-deprecated-actions
Fix deprecated actions
2 parents d33ab03 + 96033b2 commit e6fba72

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ jobs:
3636

3737
- name: Get pip cache dir
3838
id: pip-cache
39+
shell: bash
3940
run: |
40-
echo "::set-output name=dir::$(pip cache dir)"
41+
echo "PIP_DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
4142
4243
- name: Cache
4344
uses: actions/cache@v3
4445
with:
45-
path: ${{ steps.pip-cache.outputs.dir }}
46+
path: ${{ steps.pip-cache.outputs.PIP_DIR }}
4647
key:
4748
${{ matrix.os }}-${{ matrix.python-version }}-v1-${{ hashFiles('**/tox.ini') }}
4849
restore-keys: |

0 commit comments

Comments
 (0)