From f078d858abd7c32bdb9baac985f21e2627b5b268 Mon Sep 17 00:00:00 2001 From: Diego Szychowski Date: Fri, 18 Nov 2022 14:56:53 -0300 Subject: [PATCH] fix set-output deprecation --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index aae7b85..30bf0a4 100644 --- a/action.yml +++ b/action.yml @@ -26,5 +26,5 @@ runs: T=$(mktemp) trap "rm -f $T" 1 2 3 15 env GITHUB_PRIV_KEY="${{ inputs.private_key }}" go-github-apps -inst-id ${{ inputs.installation_id }} -app-id ${{ inputs.app_id }} > $T - echo "::set-output name=github_token::$(cat $T)" + echo "github_token=$(cat $T)" >> $GITHUB_OUTPUT shell: bash