.github/workflows: upgrade to setup-go@v2

The rest of our workflows use v2.1.4.
For reasons I do not understand, we must set GOPATH here.
Maybe the GitHub Action builds come with GOPATH already set?

Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
pull/3622/head
Josh Bleecher Snyder 2 years ago committed by Josh Bleecher Snyder
parent 408522ddad
commit 1dc1c8b709

@ -12,11 +12,13 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Set GOPATH
run: echo "GOPATH=$HOME/go" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2.1.4
with:
go-version: 1.17
id: go
- name: Checkout Code
uses: actions/checkout@v1

Loading…
Cancel
Save