Skip to content

Commit 120f049

Browse files
committed
Do not use deprecated API in CI
- get rid of CI warning annotations
1 parent 1c2d9ea commit 120f049

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/performance.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
id: pip-cache
2828
run: |
2929
python -m pip install -U pip
30-
echo "::set-output name=dir::$(pip cache dir)"
30+
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
31+
echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT
3132
- name: pip cache
3233
uses: actions/cache@v4
3334
with:

.github/workflows/pythontests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
id: pip-cache
3535
run: |
3636
python -m pip install -U pip # to ensure version > 20 to have cache dir
37-
echo "::set-output name=dir::$(pip cache dir)"
37+
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
38+
echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT
3839
- name: pip cache
3940
uses: actions/cache@v4
4041
with:

0 commit comments

Comments
 (0)