Skip to content

Commit 54d7c15

Browse files
committed
Migrate github action to use environment files instead of set-output.
Updated the test workflow according to the instructions at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent 84350e4 commit 54d7c15

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545

4646
- name: Get pip cache dir
4747
id: pip-cache
48-
run: |
49-
echo "::set-output name=dir::$(pip cache dir)"
48+
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
5049

5150
- name: Cache
5251
uses: actions/cache@v3

0 commit comments

Comments
 (0)