Skip to content

Commit

Permalink
.github/workflows: update actions/setup-go to v2
Browse files Browse the repository at this point in the history
v2 adds GOBIN (or GOPATH/bin) to the PATH
which is necessary to locate installed tools
because we no longer activates the extension through
activate that triggered mutation of GOPATH/GOBIN
environment variables.

Change-Id: I3e590b63e1f6d0dd6c4bf845b4cd4087c609184d
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/268997
Trust: Hyang-Ah Hana Kim <[email protected]>
Run-TryBot: Hyang-Ah Hana Kim <[email protected]>
TryBot-Result: kokoro <[email protected]>
Reviewed-by: Suzy Mueller <[email protected]>
  • Loading branch information
hyangah committed Nov 10, 2020
1 parent 2b6ce15 commit cc84cbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: '10.x'

- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: '1.15'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-long.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
node-version: '10.x'

- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: '1.15'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: '10.x'

- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: '1.15'

Expand Down

0 comments on commit cc84cbe

Please sign in to comment.