Skip to content

Commit

Permalink
GHA: Replace deprecated set-output (#585)
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/

This should fix a warning for the nightly builds in bugzilla issue 24600.
  • Loading branch information
tim-dlang authored Jun 11, 2024
1 parent 2d35d0e commit 764e4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_release_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
for REPO in dmd phobos
do
REV=$( git -C $REPO rev-parse HEAD )
echo "::set-output name=$REPO-revision::$REV"
echo "$REPO-revision=$REV" >> $GITHUB_OUTPUT
done
runs-on: ubuntu-latest
Expand Down

0 comments on commit 764e4d9

Please sign in to comment.