File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ jobs:
27
27
runs-on : ubuntu-latest
28
28
steps :
29
29
- name : git checkout
30
- uses : actions/checkout@v2
30
+ uses : actions/checkout@v3
31
31
32
32
- name : go cache
33
- uses : actions/cache@v1
33
+ uses : actions/cache@v3
34
34
with :
35
35
path : /home/runner/work/go
36
36
key : lnc-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
@@ -68,13 +68,12 @@ jobs:
68
68
runs-on : ubuntu-latest
69
69
steps :
70
70
- name : git checkout
71
- uses : actions/checkout@v2
72
-
73
- - name : Fetch all history for linter
74
- run : git fetch --prune --unshallow
71
+ uses : actions/checkout@v3
72
+ with :
73
+ fetch-depth : 0
75
74
76
75
- name : go cache
77
- uses : actions/cache@v1
76
+ uses : actions/cache@v3
78
77
with :
79
78
path : /home/runner/work/go
80
79
key : lnc-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
@@ -107,10 +106,10 @@ jobs:
107
106
- unit-race
108
107
steps :
109
108
- name : git checkout
110
- uses : actions/checkout@v2
109
+ uses : actions/checkout@v3
111
110
112
111
- name : go cache
113
- uses : actions/cache@v1
112
+ uses : actions/cache@v3
114
113
with :
115
114
path : /home/runner/work/go
116
115
key : lnc-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
@@ -136,10 +135,10 @@ jobs:
136
135
runs-on : ubuntu-latest
137
136
steps :
138
137
- name : git checkout
139
- uses : actions/checkout@v2
138
+ uses : actions/checkout@v3
140
139
141
140
- name : go cache
142
- uses : actions/cache@v1
141
+ uses : actions/cache@v3
143
142
with :
144
143
path : /home/runner/work/go
145
144
key : lnc-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
You can’t perform that action at this time.
0 commit comments