14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Install Go
17
- uses : actions/setup-go@v2
17
+ uses : actions/setup-go@v3
18
18
with :
19
19
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
20
20
go-version : ${{ env.GO_VERSION }}
32
32
steps :
33
33
- uses : actions/checkout@v3
34
34
- name : Install Go
35
- uses : actions/setup-go@v2
35
+ uses : actions/setup-go@v3
36
36
with :
37
37
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
38
38
go-version : ${{ env.GO_VERSION }}
50
50
steps :
51
51
- uses : actions/checkout@v3
52
52
- name : Install Go
53
- uses : actions/setup-go@v2
53
+ uses : actions/setup-go@v3
54
54
with :
55
55
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
56
56
go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
64
64
steps :
65
65
- uses : actions/checkout@v3
66
66
- name : Install Go
67
- uses : actions/setup-go@v2
67
+ uses : actions/setup-go@v3
68
68
with :
69
69
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
70
70
go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
82
82
steps :
83
83
- uses : actions/checkout@v3
84
84
- name : Install Go
85
- uses : actions/setup-go@v2
85
+ uses : actions/setup-go@v3
86
86
with :
87
87
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
88
88
go-version : ${{ matrix.golang }}
@@ -106,7 +106,7 @@ jobs:
106
106
- name : Unshallow
107
107
run : git fetch --prune --unshallow
108
108
- name : Install Go
109
- uses : actions/setup-go@v2
109
+ uses : actions/setup-go@v3
110
110
with :
111
111
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
112
112
go-version : ${{ env.GO_VERSION }}
0 commit comments