From bd922a808f35ed53d2ab2fc807113fc596a3179a Mon Sep 17 00:00:00 2001 From: ChrisCarini <6374067+ChrisCarini@users.noreply.github.com> Date: Tue, 27 Dec 2022 11:16:06 -0800 Subject: [PATCH] Migrating `set-output` to environment files per GitHub deprecation notice. See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ for details. --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ac21ceb..08bcd34 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -455,7 +455,7 @@ set -o errexit echo "::endgroup::" # END "Running verification on $PLUGIN_LOCATION for $IDE_DIRECTORIES..." block. -echo "::set-output name=verification-output-log-filename::$VERIFICATION_OUTPUT_LOG" +echo "verification-output-log-filename=$VERIFICATION_OUTPUT_LOG" >> $GITHUB_OUTPUT error_wall() { echo "::error::=============================================="