From: Joel Rosdahl Date: Sat, 22 Oct 2022 11:33:37 +0000 (+0200) Subject: ci: Avoid using deprecated GitHub set-output command X-Git-Tag: v4.7.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc1c8da1b6ccfdc9e9a7b453dd7ccc378668432f;p=thirdparty%2Fccache.git ci: Avoid using deprecated GitHub set-output command Reference: --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 49927fc91..daea64bd4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -455,7 +455,7 @@ jobs: run: | rc=0 ci/build || rc=$? - echo "::set-output name=exit_status::$rc" + echo "exit_status=$rc" >> $GITHUB_OUTPUT exit $rc # CTest exits with return code 8 on test failure. continue-on-error: ${{ matrix.config.allow_test_failures == true &&