Replace set-output by $GITHUB_OUTPUT (#20547)

* remove set-output

Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
Yih-Dar
2022-12-05 18:25:13 +01:00
committed by GitHub
parent 9763f829a5
commit 67d32f4649
6 changed files with 7 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ jobs:
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [ `basename "${file}"` = "setup.py" ]; then
echo ::set-output name=changed::"1"
echo "changed=1" >> $GITHUB_OUTPUT
fi
done