Skip to content

Commit

Permalink
CI: replace obsolete set-output command
Browse files Browse the repository at this point in the history
See: https://github.blog/changelog/2022-10-11-github-actions-\
     deprecating-save-state-and-set-output-commands/

Signed-off-by: Jiang Xin <[email protected]>
  • Loading branch information
jiangxin committed Feb 26, 2024
1 parent a589c50 commit 3d740db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/git-pot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
) &&
if diff footprint.remote footprint.last
then
echo ::set-output name=status::skip
echo "status=skip" >> $GITHUB_OUTPUT
else
echo ::set-output name=status::no
echo "status=no" >> $GITHUB_OUTPUT
fi
- name: clone pot/${{ matrix.branch }} branch of current repository
if: steps.skip-if-redundant.outputs.status != 'skip'
Expand Down

0 comments on commit 3d740db

Please sign in to comment.