From d488e16dc046449a373d3ebbdc43b07802c187ba Mon Sep 17 00:00:00 2001 From: Noah Canadea Date: Thu, 30 Nov 2023 07:38:57 +0000 Subject: [PATCH] fix(action_integration_test): Fix token variable assignment. --- .github/workflows/action_integration_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action_integration_test.yml b/.github/workflows/action_integration_test.yml index ca7c29b..bcf9cd4 100644 --- a/.github/workflows/action_integration_test.yml +++ b/.github/workflows/action_integration_test.yml @@ -21,10 +21,10 @@ jobs: # Check if the secrets.PAT_GITHUB is set, if not use the default GITHUB_TOKEN if [ "${{ secrets.PAT_GITHUB }}" != "" ]; then echo "Secret PAT_GITHUB is set, using it instead of GITHUB_TOKEN" - echo "::set-output name=token::${{ secrets.PAT_GITHUB }}" + echo "token=${{ secrets.PAT_GITHUB }}" >> $GITHUB_OUTPUT else echo "Secret PAT_GITHUB is not set, actions default token GITHUB_TOKEN" - echo "::set-output name=token::${{ github.token }}" + echo "token=${{ github.token }}" >> $GITHUB_OUTPUT fi fi