From 19d90b54177d648ff4cf2cb4073cdb46bc60da5e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 2 Jan 2023 02:40:29 +0100 Subject: set-output is deprecated --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 9ddd7b2..0765af2 100644 --- a/action.yml +++ b/action.yml @@ -120,8 +120,8 @@ runs: throw "Sorry, installing GCC is unsupported on $os" } - echo "::set-output name=gcc::$gcc" - echo "::set-output name=gxx::$gxx" + echo "gcc=$gcc" >> $env:GITHUB_OUTPUT + echo "gxx=$gxx" >> $env:GITHUB_OUTPUT shell: pwsh - run: | -- cgit v1.2.3