From d2ed4b0c7ba53ca18c86f9c2d706be22a363f45c Mon Sep 17 00:00:00 2001 From: Mitsuo Heijo Date: Thu, 13 Oct 2022 11:38:39 +0900 Subject: [PATCH] Use environment files instead of set-output https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- src/install-go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install-go b/src/install-go index 2e30a2d..6d8330d 100755 --- a/src/install-go +++ b/src/install-go @@ -65,5 +65,5 @@ GOTOOLDIR' echo "GOROOT=$(go env GOROOT)" >>"$GITHUB_ENV" for var in $govars; do - echo "::set-output name=$var::$(go env "$var")" + echo "$var=$(go env "$var")" >>"$GITHUB_OUTPUT" done