From 2f9a49c407243f591d651f0265b6dbc052ef2d23 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 2 Jan 2023 06:51:32 +0100 Subject: actions/build-example: set-output is deprecated --- .github/actions/build-example/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' -- cgit v1.2.3