summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2022-10-22 13:33:37 +0200
committerJoel Rosdahl <joel@rosdahl.net>2022-10-22 14:38:44 +0200
commitbc1c8da1b6ccfdc9e9a7b453dd7ccc378668432f (patch)
treebae2d485f6b835c18231876d8a3a5c9177786387
parent5d7094e710b7db589b37615eb5809e0e746d9782 (diff)
downloadccache-bc1c8da1b6ccfdc9e9a7b453dd7ccc378668432f.tar.gz
ci: Avoid using deprecated GitHub set-output command
Reference: <https://github.blog/changelog/ 2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/>
-rw-r--r--.github/workflows/build.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 49927fc9..daea64bd 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 &&