Skip to content

Commit 226daf3

Browse files
kevinGCgvisor-bot
authored andcommitted
github: add quotes around shell variable
PiperOrigin-RevId: 503526899
1 parent 8dec4e3 commit 226daf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/go.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- id: setup
2424
run: |
2525
if ! [[ -z "${{ secrets.GO_TOKEN }}" ]]; then
26-
echo has_token=true >> $GITHUB_OUTPUT
26+
echo has_token=true >> "$GITHUB_OUTPUT"
2727
else
28-
echo has_token=false >> $GITHUB_OUTPUT
28+
echo has_token=false >> "$GITHUB_OUTPUT"
2929
fi
3030
- run: |
3131
jq -nc '{"state": "pending", "context": "go tests"}' | \

0 commit comments

Comments
 (0)