Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f7249ac

Browse files
authoredApr 19, 2025··
fix set-output deprecation warnings (#330)
1 parent 527f5d7 commit f7249ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Get pip cache dir
2828
id: pip-cache
2929
run: |
30-
echo "::set-output name=dir::$(pip cache dir)"
30+
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3131
- name: Cache pip
3232
uses: actions/cache@v4
3333
with:

‎.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Get pip cache dir
3232
id: pip-cache
3333
run: |
34-
echo "::set-output name=dir::$(pip cache dir)"
34+
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3535
- name: Cache pip
3636
uses: actions/cache@v4
3737
with:

0 commit comments

Comments
 (0)
Please sign in to comment.