@@ -167,7 +167,7 @@ jobs:
167167 - name : Run unit test
168168 run : make test-cover
169169 - name : Upload unit test coverage report
170- uses : actions/upload-artifact@v4
170+ uses : actions/upload-artifact@v5
171171 with :
172172 name : unit-test-coverage-report-${{ github.sha }}
173173 path : ./coverage.txt
@@ -186,7 +186,7 @@ jobs:
186186 - name : Run integration test
187187 run : make test-integration-cover
188188 - name : Upload integration test coverage report
189- uses : actions/upload-artifact@v4
189+ uses : actions/upload-artifact@v5
190190 with :
191191 name : integration-test-coverage-report-${{ github.sha }}
192192 path : ./node/coverage.txt
@@ -227,12 +227,12 @@ jobs:
227227 steps :
228228 - uses : actions/checkout@v5
229229 - name : Download unit test coverage report
230- uses : actions/download-artifact@v5
230+ uses : actions/download-artifact@v6
231231 with :
232232 name : unit-test-coverage-report-${{ github.sha }}
233233 path : ./unit-coverage
234234 - name : Download integration test coverage report
235- uses : actions/download-artifact@v5
235+ uses : actions/download-artifact@v6
236236 with :
237237 name : integration-test-coverage-report-${{ github.sha }}
238238 path : ./integration-coverage
0 commit comments