Skip to content

Commit bc0366f

Browse files
authored
Merge pull request #4217 from arunsathiya/master
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
2 parents bb6e887 + 8038c40 commit bc0366f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
git add src/_data/boot-contracts-reference.json
6767
if $(git diff --staged --quiet --exit-code); then
6868
echo "No reference.json changes, stopping"
69-
echo "::set-output name=open_pr::0"
69+
echo "open_pr=0" >> "$GITHUB_OUTPUT"
7070
else
7171
git remote add robot https://github.com/$ROBOT_OWNER/$ROBOT_REPO
7272
git commit -m "auto: update Clarity references JSONs from stacks-core@${GITHUB_SHA}"
7373
git push robot $ROBOT_BRANCH
74-
echo "::set-output name=open_pr::1"
74+
echo "open_pr=1" >> "$GITHUB_OUTPUT"
7575
fi
7676
7777
- name: Open PR

0 commit comments

Comments
 (0)