File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 46
46
with :
47
47
submodules : true
48
48
49
+ - name : Setup Go
50
+ uses : actions/setup-go@v2
51
+ with :
52
+ go-version : ${{ env.GO_VERSION }}
53
+
49
54
- name : Find the Go Build Cache
50
55
id : go
51
56
run : echo "::set-output name=cache::$(make go.cachedir)"
@@ -67,12 +72,10 @@ jobs:
67
72
- name : Vendor Dependencies
68
73
run : make vendor vendor.check
69
74
70
- # This action uses its own setup-go, which always seems to use the latest
71
- # stable version of Go. We could run 'make lint' to ensure our desired Go
72
- # version, but we prefer this action because it leaves 'annotations' (i.e.
73
- # it comments on PRs to point out linter violations).
75
+ # We could run 'make lint' but we prefer this action because it leaves
76
+ # 'annotations' (i.e. it comments on PRs to point out linter violations).
74
77
- name : Lint
75
- uses : golangci/golangci-lint-action@v2
78
+ uses : golangci/golangci-lint-action@v3
76
79
with :
77
80
version : ${{ env.GOLANGCI_VERSION }}
78
81
You can’t perform that action at this time.
0 commit comments