Skip to content

Commit

Permalink
Replace deprecated set-output command in Github Actions CI configur…
Browse files Browse the repository at this point in the history
…ation (#2295)

* replace deprecated set-output command in Github Actions configuration

* fix output name
  • Loading branch information
oskooi authored Oct 30, 2022
1 parent 1511e9c commit ef5a35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
id: pip-cache
run: |
python -m pip install --upgrade pip wheel
echo "::set-output name=dir::$(pip cache dir)"
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: pip cache
uses: actions/cache@v3
Expand Down

0 comments on commit ef5a35a

Please sign in to comment.