diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 22:44:50 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 23:03:13 +0100 |
commit | 3fe42b779393693ece2e71eb995781aada92f0a0 (patch) | |
tree | 17ce6701c85bb1535b2e891b0fbd3bb935194bdd /action.yml | |
parent | workflows/test: actualize runner OSes (diff) | |
download | setup-mingw-3fe42b779393693ece2e71eb995781aada92f0a0.tar.gz setup-mingw-3fe42b779393693ece2e71eb995781aada92f0a0.zip |
set-output is deprecated
Diffstat (limited to '')
-rw-r--r-- | action.yml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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: | |