File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
name : Check Go Dependencies
3
3
4
4
env :
5
- # See: https://github.com/actions/setup-go/tree/v2 #readme
5
+ # See: https://github.com/actions/setup-go/tree/v3 #readme
6
6
GO_VERSION : " 1.16"
7
7
8
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
36
36
37
37
steps :
38
38
- name : Checkout repository
39
- uses : actions/checkout@v2
39
+ uses : actions/checkout@v3
40
40
with :
41
41
submodules : recursive
42
42
47
47
version : 3.x
48
48
49
49
- name : Install Go
50
- uses : actions/setup-go@v2
50
+ uses : actions/setup-go@v3
51
51
with :
52
52
go-version : ${{ env.GO_VERSION }}
53
53
73
73
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
74
74
- name : Upload cache to workflow artifact
75
75
if : failure() && steps.diff.outcome == 'failure'
76
- uses : actions/upload-artifact@v2
76
+ uses : actions/upload-artifact@v3
77
77
with :
78
78
if-no-files-found : error
79
79
name : dep-licenses-cache
84
84
85
85
steps :
86
86
- name : Checkout repository
87
- uses : actions/checkout@v2
87
+ uses : actions/checkout@v3
88
88
with :
89
89
submodules : recursive
90
90
95
95
version : 3.x
96
96
97
97
- name : Install Go
98
- uses : actions/setup-go@v2
98
+ uses : actions/setup-go@v3
99
99
with :
100
100
go-version : ${{ env.GO_VERSION }}
101
101
You can’t perform that action at this time.
0 commit comments