From caf9feba73b4620019a3749ffdc5dac96198031a Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Thu, 12 Feb 2026 08:47:06 +1300 Subject: [PATCH] CI: fix set-output deprecation warning --- .github/workflows/compile_macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile_macos.yml b/.github/workflows/compile_macos.yml index 6ea0e9687d..5e011a5bf6 100644 --- a/.github/workflows/compile_macos.yml +++ b/.github/workflows/compile_macos.yml @@ -42,7 +42,7 @@ jobs: shell: cmake -P {0} run: | string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) - message("::set-output name=timestamp::${current_date}") + file(APPEND "$ENV{GITHUB_OUTPUT}" "timestamp=${current_date}\n") - name: ccache cache files uses: actions/cache@v4 with: