diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 06:51:32 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 06:51:32 +0100 |
commit | 2f9a49c407243f591d651f0265b6dbc052ef2d23 (patch) | |
tree | 1ebdf32017fe659a0b6199a5accfcd8c6148acf2 | |
parent | workflows/basic: fix Python 3.6 tests (diff) | |
download | cmake-common-2f9a49c407243f591d651f0265b6dbc052ef2d23.tar.gz cmake-common-2f9a49c407243f591d651f0265b6dbc052ef2d23.zip |
actions/build-example: set-output is deprecated
-rw-r--r-- | .github/actions/build-example/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/build-example/action.yml b/.github/actions/build-example/action.yml index 97cc627..60ca2e8 100644 --- a/.github/actions/build-example/action.yml +++ b/.github/actions/build-example/action.yml @@ -31,7 +31,7 @@ runs: $src_dir = Resolve-Path '${{ inputs.src-dir }}' $project_name = Split-Path $src_dir -Leaf $install_dir = Join-Path (Split-Path $env:GITHUB_WORKSPACE) "install_$project_name" - echo "::set-output name=path::$install_dir" + echo "path=$install_dir" >> $env:GITHUB_OUTPUT shell: pwsh - run: | $python = 'python' |