Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

The set-output command is deprecated #63

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ wait_for_workflow_to_finish() {
echo "Waiting for workflow to finish:"
echo "The workflow id is [${last_workflow_id}]."
echo "The workflow logs can be found at ${last_workflow_url}"
echo "::set-output name=workflow_id::${last_workflow_id}"
echo "::set-output name=workflow_url::${last_workflow_url}"
echo "workflow_id=${last_workflow_id}" >> $GITHUB_OUTPUT
echo "workflow_url=${last_workflow_url}" >> $GITHUB_OUTPUT
echo ""

if [ -n "${INPUT_COMMENT_DOWNSTREAM_URL}" ]; then
Expand All @@ -193,7 +193,7 @@ wait_for_workflow_to_finish() {

echo "Checking conclusion [${conclusion}]"
echo "Checking status [${status}]"
echo "::set-output name=conclusion::${conclusion}"
echo "conclusion=${conclusion}" >> $GITHUB_OUTPUT
done

if [[ "${conclusion}" == "success" && "${status}" == "completed" ]]
Expand Down