Skip to content

Commit 3d740db

Browse files
committed
CI: replace obsolete set-output command
See: https://github.blog/changelog/2022-10-11-github-actions-\ deprecating-save-state-and-set-output-commands/ Signed-off-by: Jiang Xin <zhiyou.jx@alibaba-inc.com>
1 parent a589c50 commit 3d740db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/git-pot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
) &&
4444
if diff footprint.remote footprint.last
4545
then
46-
echo ::set-output name=status::skip
46+
echo "status=skip" >> $GITHUB_OUTPUT
4747
else
48-
echo ::set-output name=status::no
48+
echo "status=no" >> $GITHUB_OUTPUT
4949
fi
5050
- name: clone pot/${{ matrix.branch }} branch of current repository
5151
if: steps.skip-if-redundant.outputs.status != 'skip'

0 commit comments

Comments
 (0)