From e7f753680a418f4d9801c5519c7f3cd359f3aa37 Mon Sep 17 00:00:00 2001 From: aliaksandrryzhou Date: Thu, 4 Jul 2024 15:37:21 +0300 Subject: [PATCH] fix: Outputs upgrade --- .github/workflows/reusable-api-e2e.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-api-e2e.yml b/.github/workflows/reusable-api-e2e.yml index f3dd9ef896d..ce7d6d6256b 100644 --- a/.github/workflows/reusable-api-e2e.yml +++ b/.github/workflows/reusable-api-e2e.yml @@ -36,9 +36,9 @@ jobs: id: secret-check run: | if [[ -n "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo "::set-output name=has_token::true" + echo "has_token=true" >> "$GITHUB_OUTPUT" else - echo "::set-output name=has_token::false" + echo "has_token=false" >> "$GITHUB_OUTPUT" fi # This workflow contains a single job called "build"