diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 04:42:57 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 04:42:57 +0100 |
commit | 93f89834ca2dcc4807d918caf70c0a1c8d85c553 (patch) | |
tree | 9a92779d1f7ae94c1f2585899e3d86915b5e7f94 | |
parent | workflows/test: ignore Cygwin jobs for now (diff) | |
download | setup-clang-93f89834ca2dcc4807d918caf70c0a1c8d85c553.tar.gz setup-clang-93f89834ca2dcc4807d918caf70c0a1c8d85c553.zip |
set-output is deprecated
-rw-r--r-- | action.yml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,8 +205,8 @@ runs: throw "Sorry, installing Clang is unsupported on $os" } - echo "::set-output name=clang::$clang" - echo "::set-output name=clangxx::$clangxx" + echo "clang=$clang" >> $env:GITHUB_OUTPUT + echo "clangxx=$clangxx" >> $env:GITHUB_OUTPUT shell: pwsh - run: | |