Skip to content

Commit a53cae9

Browse files
author
Paulo Gomes
committed
Set go version to 1.16
make verify is failing 'go mod tidy: go.mod file indicates go 1.16, but maximum supported version is 1.15' which indicates that the default go version on the runner is 1.15. Signed-off-by: Paulo Gomes <[email protected]>
1 parent f371eb3 commit a53cae9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/e2e.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2
16+
- name: Setup Go
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: 1.16.x
1620
- name: Restore Go cache
1721
uses: actions/cache@v1
1822
with:
@@ -36,6 +40,7 @@ jobs:
3640
- name: Run tests
3741
uses: ./.github/actions/run-tests
3842
env:
43+
GOROOT:
3944
GOPATH: /github/home/go
4045
- name: Verify
4146
run: make verify

0 commit comments

Comments
 (0)