From a0cf0bfd95403e2612be82b8bfa2c312e09e0d57 Mon Sep 17 00:00:00 2001 From: Dmytro Vyazelenko <696855+vyazelenko@users.noreply.github.com> Date: Wed, 10 Jan 2024 10:15:49 +0100 Subject: [PATCH] [CI] Use `$GITHUB_OUTPUT` instead of the deprecated `::set-output` command. See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e8ab9fd1d..0521e8a2d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: id: copy_test_logs if: failure() run: | - echo "::set-output name=dir::build/test_logs" + echo "dir=build/test_logs" >> $GITHUB_OUTPUT ./gradlew copyTestLogs - name: Upload crash logs if: always() && steps.copy_test_logs.outputs.dir == 'build/test_logs'