Skip to content

Commit 3655b2a

Browse files
committed
fixing deprected ::set-output
1 parent cdbc768 commit 3655b2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ wait_for_workflow_to_finish() {
149149
echo "Waiting for workflow to finish:"
150150
echo "The workflow id is [${last_workflow_id}]."
151151
echo "The workflow logs can be found at ${last_workflow_url}"
152-
echo "::set-output name=workflow_id::${last_workflow_id}"
153-
echo "::set-output name=workflow_url::${last_workflow_url}"
152+
echo "workflow_id=$last_workflow_id" >> "$GITHUB_OUTPUT"
153+
echo "workflow_url=$last_workflow_url" >> "$GITHUB_OUTPUT"
154154
echo ""
155155

156156
conclusion=null

0 commit comments

Comments
 (0)