From 4804ab6b3699b27fcd62bfc9c7ab3bc58d4af4c3 Mon Sep 17 00:00:00 2001 From: Satoshi Ikari Date: Sun, 25 Aug 2024 17:10:51 +0900 Subject: [PATCH] Fix to path reviewdog --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index abfda2024..cb1e39408 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -149,8 +149,8 @@ jobs: run: | COMPILER="${{ matrix.compiler }}" read -r -a COMPILER <<< "$COMPILER" - echo "::set-output name=CC::${COMPILER[0]}" - echo "::set-output name=CXX::${COMPILER[1]}" + echo "CC=${COMPILER[0]}" >> "$GITHUB_OUTPUT" + echo "CXX=${COMPILER[1]}" >> "$GITHUB_OUTPUT" - name: install deps run: |