From f1db77843bacc1dd4e2f3454817c98aa439cd81f Mon Sep 17 00:00:00 2001 From: Bohdan Saienko <55786169+bsaienko-kaa@users.noreply.github.com> Date: Wed, 16 Nov 2022 19:38:16 +0000 Subject: [PATCH] MV-7574 Deprecation of set-output (#32) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index faa17f5..35d7600 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -81,7 +81,7 @@ function runCdk(){ cdk ${INPUT_CDK_SUBCOMMAND} ${*} "${INPUT_CDK_STACK}" 2>&1 | tee output.log exitCode=${?} set +o pipefail - echo ::set-output name=status_code::${exitCode} + echo "status_code=${exitCode}" >> $GITHUB_OUTPUT output=$(cat output.log) commentStatus="Failed"