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.
1 parent 1c2d9ea commit 120f049Copy full SHA for 120f049
.github/workflows/performance.yml
@@ -27,7 +27,8 @@ jobs:
27
id: pip-cache
28
run: |
29
python -m pip install -U pip
30
- echo "::set-output name=dir::$(pip cache dir)"
+ echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
31
+ echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT
32
- name: pip cache
33
uses: actions/cache@v4
34
with:
.github/workflows/pythontests.yml
@@ -34,7 +34,8 @@ jobs:
35
36
python -m pip install -U pip # to ensure version > 20 to have cache dir
37
38
39
40
41
0 commit comments