From aa5756911e5df8b83b5cf394e113e1459ada2553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jiri=20Dan=C4=9Bk?= Date: Thu, 22 Jun 2023 15:20:45 +0200 Subject: [PATCH] Fix warning in GitHub actions about deprecated .yaml syntax (#100) --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4aa0a64..6244359 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,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}") - uses: actions/cache@v3 with: