Skip to content

Commit

Permalink
fix: replacing deprecated set-output
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Lindberg <tobias.ehlert@gmail.com>
  • Loading branch information
tobiasehlert committed Oct 19, 2022
1 parent ac2a6b5 commit 18dc76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ fi
set +e
num_changed=$(git_status)
set -e
echo "::set-output name=num_changed::${num_changed}"
echo "num_changed=${num_changed}" >> $GITHUB_OUTPUT

if [ "${INPUT_GIT_PUSH}" = "true" ]; then
git_commit
Expand Down

3 comments on commit 18dc76d

@darox
Copy link

@darox darox commented on 18dc76d Mar 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any ETA on when this fix will be part of a new release?

@davidtilloy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello,
Can someone build a new release with this fix, please?

@tobiasehlert
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe @khos2ow can help us on that one? He did at least merge the PR in the first place :)

Please sign in to comment.