From a7d9aa6d5bfbed11c94578c6a2eb04ce75cbdbe5 Mon Sep 17 00:00:00 2001 From: Adin Scannell Date: Fri, 31 Jul 2020 16:06:13 -0700 Subject: [PATCH] Use proper set-output syntax. PiperOrigin-RevId: 324302828 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 18b805c15..0869fb8db 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,9 +14,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.GO_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo ::set-output name=has_token::true else - echo ::set-output has_token=false + echo ::set-output name=has_token::false fi - run: | jq -nc '{"state": "pending", "context": "go tests"}' | \