2020 DEFAULT_DEBUG_BRANCH : ${{ github.ref_name }}
2121
2222 steps :
23- - uses : actions/checkout@v4
23+ - uses : actions/checkout@v5
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@v4
55+ - uses : actions/checkout@v5
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@v4
85+ - uses : actions/checkout@v5
8686
87- - uses : actions/setup-go@v5
87+ - uses : actions/setup-go@v6
8888 with :
8989 go-version-file : ./go.mod
9090 cache : true
@@ -108,10 +108,10 @@ jobs:
108108 runs-on : ubuntu-24.04
109109
110110 steps :
111- - uses : actions/checkout@v4
111+ - uses : actions/checkout@v5
112112
113113 - name : Download binary artifact
114- uses : actions/download-artifact@v4
114+ uses : actions/download-artifact@v5
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@v4
124+ uses : actions/download-artifact@v5
125125 with :
126126 name : cheqd-node-build.tar
127127
@@ -144,7 +144,7 @@ jobs:
144144 run : |
145145 bash import-keys.sh
146146
147- - uses : actions/setup-go@v5
147+ - uses : actions/setup-go@v6
148148 with :
149149 go-version-file : ./go.mod
150150 cache : true
@@ -174,7 +174,7 @@ jobs:
174174 name : " Fee Abstraction Tests"
175175 runs-on : ubuntu-24.04
176176 steps :
177- - uses : actions/checkout@v4
177+ - uses : actions/checkout@v5
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@v4
187+ - uses : actions/checkout@v5
188188
189189 - name : Download old node binary (mainnet-latest)
190190 run : |
@@ -202,7 +202,7 @@ jobs:
202202 username : ${{ github.actor }}
203203 password : ${{ secrets.GITHUB_TOKEN }}
204204
205- - uses : actions/setup-go@v5
205+ - uses : actions/setup-go@v6
206206 with :
207207 go-version-file : ./go.mod
208208 cache : true
@@ -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@v4
215+ uses : actions/download-artifact@v5
216216 with :
217217 name : cheqd-node-build.tar
218218
@@ -246,7 +246,7 @@ jobs:
246246 docker ps -a
247247
248248 - name : Download binary artifact (build-latest)
249- uses : actions/download-artifact@v4
249+ uses : actions/download-artifact@v5
250250 id : download
251251 with :
252252 name : cheqd-noded
@@ -318,39 +318,39 @@ jobs:
318318 if : always()
319319
320320 steps :
321- - uses : actions/checkout@v4
321+ - uses : actions/checkout@v5
322322
323323 - name : Download unit test
324- uses : actions/download-artifact@v4
324+ uses : actions/download-artifact@v5
325325 with :
326326 name : report-unit.xml
327327
328328 - name : Download integration test report
329- uses : actions/download-artifact@v4
329+ uses : actions/download-artifact@v5
330330 with :
331331 name : report-integration.xml
332332
333333 - name : Download pre-upgrade test Report
334- uses : actions/download-artifact@v4
334+ uses : actions/download-artifact@v5
335335 with :
336336 name : report-pre-upgrade.xml
337337
338338 - name : Download post-upgrade test Report
339- uses : actions/download-artifact@v4
339+ uses : actions/download-artifact@v5
340340 with :
341341 name : report-post-upgrade.xml
342342
343343 - name : Download upgraded integration test Report
344- uses : actions/download-artifact@v4
344+ uses : actions/download-artifact@v5
345345 with :
346346 name : report-upgraded-integration.xml
347347
348348 - name : Download pricing proposal test Report
349- uses : actions/download-artifact@v4
349+ uses : actions/download-artifact@v5
350350 with :
351351 name : report-pricing-proposal.xml
352352 - name : Download pricing change test Report
353- uses : actions/download-artifact@v4
353+ uses : actions/download-artifact@v5
354354 with :
355355 name : report-pricing-change.xml
356356 - name : Combine test results
0 commit comments