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