aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-01 22:44:50 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-01 23:03:13 +0100
commit3fe42b779393693ece2e71eb995781aada92f0a0 (patch)
tree17ce6701c85bb1535b2e891b0fbd3bb935194bdd
parentworkflows/test: actualize runner OSes (diff)
downloadsetup-mingw-3fe42b779393693ece2e71eb995781aada92f0a0.tar.gz
setup-mingw-3fe42b779393693ece2e71eb995781aada92f0a0.zip
set-output is deprecated
-rw-r--r--action.yml8
1 files 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: |