From 3fe42b779393693ece2e71eb995781aada92f0a0 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 1 Jan 2023 22:44:50 +0100 Subject: set-output is deprecated --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index d92d72e..2fc99c9 100644 --- a/action.yml +++ b/action.yml @@ -179,10 +179,10 @@ runs: $gxx = $prefix + '-g++' $windres = $prefix = '-windres' - echo "::set-output name=prefix::$prefix" - echo "::set-output name=gcc::$gcc" - echo "::set-output name=gxx::$gxx" - echo "::set-output name=windres::$windres" + echo "prefix=$prefix" >> $env:GITHUB_OUTPUT + echo "gcc=$gcc" >> $env:GITHUB_OUTPUT + echo "gxx=$gxx" >> $env:GITHUB_OUTPUT + echo "windres=$windres" >> $env:GITHUB_OUTPUT shell: pwsh - run: | -- cgit v1.2.3