diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 02:40:29 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 02:40:29 +0100 |
commit | 19d90b54177d648ff4cf2cb4073cdb46bc60da5e (patch) | |
tree | 3235cead0e7b23cc228fb51368a4ea21770fa6fe | |
parent | workflows/test: disable x86 Cygwin (diff) | |
download | setup-gcc-19d90b54177d648ff4cf2cb4073cdb46bc60da5e.tar.gz setup-gcc-19d90b54177d648ff4cf2cb4073cdb46bc60da5e.zip |
set-output is deprecated
Diffstat (limited to '')
-rw-r--r-- | action.yml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: | |