Skip to content

Commit 898d744

Browse files
Copilottangrufus
andauthored
Fix actionlint SC2086: double-quote $GITHUB_ENV in test.yml (#121)
* Initial plan * Fix SC2086: double-quote $GITHUB_ENV in test.yml to fix actionlint error Co-authored-by: tangrufus <2259834+tangrufus@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tangrufus <2259834+tangrufus@users.noreply.github.com>
1 parent 7062b29 commit 898d744

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ jobs:
168168
with:
169169
go-version-file: 'go.mod'
170170

171-
- run: echo OS="$(go env GOOS)" >> $GITHUB_ENV
172-
- run: echo ARCH="$(go env GOARCH)" >> $GITHUB_ENV
171+
- run: echo OS="$(go env GOOS)" >> "$GITHUB_ENV"
172+
- run: echo ARCH="$(go env GOARCH)" >> "$GITHUB_ENV"
173173

174174
- uses: actions/download-artifact@v7
175175
with:

0 commit comments

Comments
 (0)