From 62320ee01e29d7da4f0ec7b650afb181a484d344 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Wed, 26 Oct 2022 13:03:49 +0900 Subject: [PATCH] Use GITHUB_OUTPUT set-output was deprecated. https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index d139660..2bc0221 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -29,4 +29,4 @@ if [ "${latest_tag}" = '' ] && [ "${INPUT_WITH_INITIAL_VERSION}" = 'true' ]; the latest_tag="${INPUT_INITIAL_VERSION}" fi -echo "::set-output name=tag::${latest_tag}" +echo "tag=${latest_tag}" >> "$GITHUB_OUTPUT"