Skip to content

Commit 86b86e6

Browse files
authored
Merge pull request #68 from jrfnl/feature/ghactions-dont-use-set-output
GH Actions: fix use of deprecated `set-output`
2 parents a54c72d + 59cd7b5 commit 86b86e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/promote-tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
OUTPUT="${OUTPUT//'%'/'%25'}"
2727
OUTPUT="${OUTPUT//$'\n'/'%0A'}"
2828
OUTPUT="${OUTPUT//$'\r'/'%0D'}"
29-
echo "::set-output name=body::$OUTPUT"
29+
echo "body=$OUTPUT" >> $GITHUB_OUTPUT
3030
- name: Debug Changelog
3131
run: echo "Extracted this Changelog \n ${{ steps.changelog.outputs.body }}"
3232
- uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)