@@ -26,19 +26,19 @@ jobs:
26
26
run : go list ./... > pkgs.txt
27
27
- name : Split pkgs into 4 files
28
28
run : split -d -n l/4 pkgs.txt pkgs.txt.part.
29
- - uses : actions/upload-artifact@v3
29
+ - uses : actions/upload-artifact@v4
30
30
with :
31
31
name : " ${{ github.sha }}-00"
32
32
path : ./pkgs.txt.part.00
33
- - uses : actions/upload-artifact@v3
33
+ - uses : actions/upload-artifact@v4
34
34
with :
35
35
name : " ${{ github.sha }}-01"
36
36
path : ./pkgs.txt.part.01
37
- - uses : actions/upload-artifact@v3
37
+ - uses : actions/upload-artifact@v4
38
38
with :
39
39
name : " ${{ github.sha }}-02"
40
40
path : ./pkgs.txt.part.02
41
- - uses : actions/upload-artifact@v3
41
+ - uses : actions/upload-artifact@v4
42
42
with :
43
43
name : " ${{ github.sha }}-03"
44
44
path : ./pkgs.txt.part.03
@@ -69,14 +69,14 @@ jobs:
69
69
**/go.sum
70
70
**/Makefile
71
71
Makefile
72
- - uses : actions/download-artifact@v3
72
+ - uses : actions/download-artifact@v4
73
73
with :
74
74
name : " ${{ github.sha }}-${{ matrix.part }}"
75
75
- name : test & coverage report creation
76
76
if : env.GIT_DIFF
77
77
run : |
78
78
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -mod=readonly -race -timeout 30m -coverprofile=${{ matrix.part }}profile.out -covermode=atomic -tags='ledger test_ledger_mock'
79
- - uses : actions/upload-artifact@v3
79
+ - uses : actions/upload-artifact@v4
80
80
if : env.GIT_DIFF
81
81
with :
82
82
name : " ${{ github.sha }}-${{ matrix.part }}-coverage"
@@ -107,7 +107,7 @@ jobs:
107
107
if : env.GIT_DIFF
108
108
run : |
109
109
make test-integration-cov
110
- - uses : actions/upload-artifact@v3
110
+ - uses : actions/upload-artifact@v4
111
111
if : env.GIT_DIFF
112
112
with :
113
113
name : " ${{ github.sha }}-integration-coverage"
@@ -138,7 +138,7 @@ jobs:
138
138
if : env.GIT_DIFF
139
139
run : |
140
140
make test-e2e-cov
141
- - uses : actions/upload-artifact@v3
141
+ - uses : actions/upload-artifact@v4
142
142
if : env.GIT_DIFF
143
143
with :
144
144
name : " ${{ github.sha }}-e2e-coverage"
@@ -158,27 +158,27 @@ jobs:
158
158
go.sum
159
159
**/go.mod
160
160
**/go.sum
161
- - uses : actions/download-artifact@v3
161
+ - uses : actions/download-artifact@v4
162
162
if : env.GIT_DIFF
163
163
with :
164
164
name : " ${{ github.sha }}-00-coverage"
165
- - uses : actions/download-artifact@v3
165
+ - uses : actions/download-artifact@v4
166
166
if : env.GIT_DIFF
167
167
with :
168
168
name : " ${{ github.sha }}-01-coverage"
169
- - uses : actions/download-artifact@v3
169
+ - uses : actions/download-artifact@v4
170
170
if : env.GIT_DIFF
171
171
with :
172
172
name : " ${{ github.sha }}-02-coverage"
173
- - uses : actions/download-artifact@v3
173
+ - uses : actions/download-artifact@v4
174
174
if : env.GIT_DIFF
175
175
with :
176
176
name : " ${{ github.sha }}-03-coverage"
177
- - uses : actions/download-artifact@v3
177
+ - uses : actions/download-artifact@v4
178
178
if : env.GIT_DIFF
179
179
with :
180
180
name : " ${{ github.sha }}-integration-coverage"
181
- - uses : actions/download-artifact@v3
181
+ - uses : actions/download-artifact@v4
182
182
if : env.GIT_DIFF
183
183
with :
184
184
name : " ${{ github.sha }}-e2e-coverage"
0 commit comments