@@ -25,19 +25,19 @@ jobs:
25
25
run : go list ./... > pkgs.txt
26
26
- name : Split pkgs into 4 files
27
27
run : split -d -n l/4 pkgs.txt pkgs.txt.part.
28
- - uses : actions/upload-artifact@v3
28
+ - uses : actions/upload-artifact@v4
29
29
with :
30
30
name : " ${{ github.sha }}-00"
31
31
path : ./pkgs.txt.part.00
32
- - uses : actions/upload-artifact@v3
32
+ - uses : actions/upload-artifact@v4
33
33
with :
34
34
name : " ${{ github.sha }}-01"
35
35
path : ./pkgs.txt.part.01
36
- - uses : actions/upload-artifact@v3
36
+ - uses : actions/upload-artifact@v4
37
37
with :
38
38
name : " ${{ github.sha }}-02"
39
39
path : ./pkgs.txt.part.02
40
- - uses : actions/upload-artifact@v3
40
+ - uses : actions/upload-artifact@v4
41
41
with :
42
42
name : " ${{ github.sha }}-03"
43
43
path : ./pkgs.txt.part.03
@@ -66,14 +66,14 @@ jobs:
66
66
go.sum
67
67
**/go.mod
68
68
**/go.sum
69
- - uses : actions/download-artifact@v3
69
+ - uses : actions/download-artifact@v4
70
70
with :
71
71
name : " ${{ github.sha }}-${{ matrix.part }}"
72
72
- name : test & coverage report creation
73
73
if : env.GIT_DIFF
74
74
run : |
75
75
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'
76
- - uses : actions/upload-artifact@v3
76
+ - uses : actions/upload-artifact@v4
77
77
if : env.GIT_DIFF
78
78
with :
79
79
name : " ${{ github.sha }}-${{ matrix.part }}-coverage"
@@ -104,7 +104,7 @@ jobs:
104
104
if : env.GIT_DIFF
105
105
run : |
106
106
make test-integration-cov
107
- - uses : actions/upload-artifact@v3
107
+ - uses : actions/upload-artifact@v4
108
108
if : env.GIT_DIFF
109
109
with :
110
110
name : " ${{ github.sha }}-integration-coverage"
@@ -135,7 +135,7 @@ jobs:
135
135
if : env.GIT_DIFF
136
136
run : |
137
137
make test-e2e-cov
138
- - uses : actions/upload-artifact@v3
138
+ - uses : actions/upload-artifact@v4
139
139
if : env.GIT_DIFF
140
140
with :
141
141
name : " ${{ github.sha }}-e2e-coverage"
@@ -155,27 +155,27 @@ jobs:
155
155
go.sum
156
156
**/go.mod
157
157
**/go.sum
158
- - uses : actions/download-artifact@v3
158
+ - uses : actions/download-artifact@v4
159
159
if : env.GIT_DIFF
160
160
with :
161
161
name : " ${{ github.sha }}-00-coverage"
162
- - uses : actions/download-artifact@v3
162
+ - uses : actions/download-artifact@v4
163
163
if : env.GIT_DIFF
164
164
with :
165
165
name : " ${{ github.sha }}-01-coverage"
166
- - uses : actions/download-artifact@v3
166
+ - uses : actions/download-artifact@v4
167
167
if : env.GIT_DIFF
168
168
with :
169
169
name : " ${{ github.sha }}-02-coverage"
170
- - uses : actions/download-artifact@v3
170
+ - uses : actions/download-artifact@v4
171
171
if : env.GIT_DIFF
172
172
with :
173
173
name : " ${{ github.sha }}-03-coverage"
174
- - uses : actions/download-artifact@v3
174
+ - uses : actions/download-artifact@v4
175
175
if : env.GIT_DIFF
176
176
with :
177
177
name : " ${{ github.sha }}-integration-coverage"
178
- - uses : actions/download-artifact@v3
178
+ - uses : actions/download-artifact@v4
179
179
if : env.GIT_DIFF
180
180
with :
181
181
name : " ${{ github.sha }}-e2e-coverage"
0 commit comments