2020 DEFAULT_DEBUG_BRANCH : ${{ github.ref_name }}
2121
2222 steps :
23- - uses : actions/checkout@v5
23+ - uses : actions/checkout@v6
2424
2525 - name : " Modify runner's home directory permissions"
2626 run : " sudo chmod 755 /home/runner"
5252 PYTHONDEVMODE : 1
5353 DEFAULT_DEBUG_BRANCH : ${{ github.ref_name }}
5454 steps :
55- - uses : actions/checkout@v5
55+ - uses : actions/checkout@v6
5656
5757 - name : " Modify runner's home directory permissions"
5858 run : " sudo chmod 755 /home/runner"
8282 runs-on : ubuntu-24.04
8383
8484 steps :
85- - uses : actions/checkout@v5
85+ - uses : actions/checkout@v6
8686
8787 - uses : actions/setup-go@v6
8888 with :
9898 run : ginkgo -r --race --randomize-all --randomize-suites --keep-going --trace --junit-report report-unit.xml
9999
100100 - name : Upload unit tests result
101- uses : actions/upload-artifact@v4
101+ uses : actions/upload-artifact@v6
102102 with :
103103 name : report-unit.xml
104104 path : report-unit.xml
@@ -108,10 +108,10 @@ jobs:
108108 runs-on : ubuntu-24.04
109109
110110 steps :
111- - uses : actions/checkout@v5
111+ - uses : actions/checkout@v6
112112
113113 - name : Download binary artifact
114- uses : actions/download-artifact@v5
114+ uses : actions/download-artifact@v7
115115 id : download
116116 with :
117117 name : cheqd-noded
@@ -121,7 +121,7 @@ jobs:
121121 run : sudo chmod +x ${{ env.RUNNER_BIN_DIR }}/cheqd-noded
122122
123123 - name : Download node Docker image
124- uses : actions/download-artifact@v5
124+ uses : actions/download-artifact@v7
125125 with :
126126 name : cheqd-node-build.tar
127127
@@ -165,7 +165,7 @@ jobs:
165165 run : docker compose --env-file build-latest.env logs --tail --follow
166166
167167 - name : Upload integration tests result
168- uses : actions/upload-artifact@v4
168+ uses : actions/upload-artifact@v6
169169 with :
170170 name : report-integration.xml
171171 path : report-integration.xml
@@ -174,7 +174,7 @@ jobs:
174174 name : " Fee Abstraction Tests"
175175 runs-on : ubuntu-24.04
176176 steps :
177- - uses : actions/checkout@v5
177+ - uses : actions/checkout@v6
178178
179179 - name : Execute fee-abstraction logic by paying in `uosmo`
180180 working-directory : ./tests/fee-abs
@@ -184,7 +184,7 @@ jobs:
184184 name : " Upgrade Tests"
185185 runs-on : ubuntu-24.04
186186 steps :
187- - uses : actions/checkout@v5
187+ - uses : actions/checkout@v6
188188
189189 - name : Download old node binary (mainnet-latest)
190190 run : |
@@ -212,7 +212,7 @@ jobs:
212212 run : go install github.com/onsi/ginkgo/v2/ginkgo@latest
213213
214214 - name : Download new version of the Docker image (build-latest)
215- uses : actions/download-artifact@v5
215+ uses : actions/download-artifact@v7
216216 with :
217217 name : cheqd-node-build.tar
218218
@@ -230,7 +230,7 @@ jobs:
230230 ginkgo -r --race --tags upgrade_integration --focus-file pre_test.go --keep-going --trace --junit-report ../../../../report-pre-upgrade.xml
231231
232232 - name : Upload pre-upgrade tests result
233- uses : actions/upload-artifact@v4
233+ uses : actions/upload-artifact@v6
234234 with :
235235 name : report-pre-upgrade.xml
236236 path : report-pre-upgrade.xml
@@ -251,7 +251,7 @@ jobs:
251251 ginkgo -r --race --tags upgrade_integration --focus-file pre_upgrade_v4_1_test.go --keep-going --trace --junit-report ../../../../report-pre-upgrade-v4_1.xml
252252
253253 - name : Upload pre-upgrade-v4_1 tests result
254- uses : actions/upload-artifact@v4
254+ uses : actions/upload-artifact@v6
255255 with :
256256 name : report-pre-upgrade-v4_1.xml
257257 path : report-pre-upgrade-v4_1.xml
@@ -272,7 +272,7 @@ jobs:
272272 ginkgo -r --race --tags upgrade_integration --focus-file pre_upgrade_v4_2_test.go --keep-going --trace --junit-report ../../../../report-pre-upgrade-v4_2.xml
273273
274274 - name : Upload pre-upgrade-v4_2 tests result
275- uses : actions/upload-artifact@v4
275+ uses : actions/upload-artifact@v6
276276 with :
277277 name : report-pre-upgrade-v4_2.xml
278278 path : report-pre-upgrade-v4_2.xml
@@ -288,7 +288,7 @@ jobs:
288288 docker ps -a
289289
290290 - name : Download binary artifact (build-latest)
291- uses : actions/download-artifact@v5
291+ uses : actions/download-artifact@v7
292292 id : download
293293 with :
294294 name : cheqd-noded
@@ -303,7 +303,7 @@ jobs:
303303 ginkgo -r --race --tags upgrade_integration --focus-file post_test.go --keep-going --trace --junit-report ../../../../report-post-upgrade.xml
304304
305305 - name : Upload post-upgrade tests result
306- uses : actions/upload-artifact@v4
306+ uses : actions/upload-artifact@v6
307307 with :
308308 name : report-post-upgrade.xml
309309 path : report-post-upgrade.xml
@@ -314,7 +314,7 @@ jobs:
314314 ginkgo -r --tags integration --race --randomize-suites --keep-going --trace --skip-file cli_defi_test.go --skip-file cli_defi_negative_test.go --junit-report ../../report-upgraded-integration.xml
315315
316316 - name : Upload post-upgrade integration tests result
317- uses : actions/upload-artifact@v4
317+ uses : actions/upload-artifact@v6
318318 with :
319319 name : report-upgraded-integration.xml
320320 path : report-upgraded-integration.xml
@@ -330,7 +330,7 @@ jobs:
330330 ginkgo -r --race --tags upgrade_integration --focus-file param_change_proposal_test.go --keep-going --trace --junit-report ../../../../report-pricing-proposal.xml
331331
332332 - name : Upload pricing proposal tests result
333- uses : actions/upload-artifact@v4
333+ uses : actions/upload-artifact@v6
334334 with :
335335 name : report-pricing-proposal.xml
336336 path : report-pricing-proposal.xml
@@ -341,7 +341,7 @@ jobs:
341341 ginkgo -r --tags integration --race --randomize-suites --keep-going --trace --skip-file cli_diddoc_test.go --skip-file cli_diddoc_negative_test.go --skip-file cli_resource_test.go --skip-file cli_resource_negative_test.go --skip-file cli_defi_test.go --skip-file cli_defi_negative_test.go --junit-report ../../report-pricing-change.xml
342342
343343 - name : Upload pricing change tests result
344- uses : actions/upload-artifact@v4
344+ uses : actions/upload-artifact@v6
345345 with :
346346 name : report-pricing-change.xml
347347 path : report-pricing-change.xml
@@ -360,39 +360,39 @@ jobs:
360360 if : always()
361361
362362 steps :
363- - uses : actions/checkout@v5
363+ - uses : actions/checkout@v6
364364
365365 - name : Download unit test
366- uses : actions/download-artifact@v5
366+ uses : actions/download-artifact@v7
367367 with :
368368 name : report-unit.xml
369369
370370 - name : Download integration test report
371- uses : actions/download-artifact@v5
371+ uses : actions/download-artifact@v7
372372 with :
373373 name : report-integration.xml
374374
375375 - name : Download pre-upgrade test Report
376- uses : actions/download-artifact@v5
376+ uses : actions/download-artifact@v7
377377 with :
378378 name : report-pre-upgrade.xml
379379
380380 - name : Download post-upgrade test Report
381- uses : actions/download-artifact@v5
381+ uses : actions/download-artifact@v7
382382 with :
383383 name : report-post-upgrade.xml
384384
385385 - name : Download upgraded integration test Report
386- uses : actions/download-artifact@v5
386+ uses : actions/download-artifact@v7
387387 with :
388388 name : report-upgraded-integration.xml
389389
390390 - name : Download pricing proposal test Report
391- uses : actions/download-artifact@v5
391+ uses : actions/download-artifact@v7
392392 with :
393393 name : report-pricing-proposal.xml
394394 - name : Download pricing change test Report
395- uses : actions/download-artifact@v5
395+ uses : actions/download-artifact@v7
396396 with :
397397 name : report-pricing-change.xml
398398 - name : Combine test results
0 commit comments