@@ -148,7 +148,7 @@ jobs:
148148 - name : Display ccache stats
149149 run : ccache -s
150150
151- # github actions/upload-artifact@v4 does not preserve executable permission on binaries
151+ # github actions/upload-artifact@v5 does not preserve executable permission on binaries
152152 - name : Compress build
153153 working-directory : ${{github.workspace}}
154154 run : >
@@ -164,7 +164,7 @@ jobs:
164164 qpid-proton/build/python
165165
166166 - name : Upload archive
167- uses : actions/upload-artifact@v4
167+ uses : actions/upload-artifact@v5
168168 with :
169169 name : qpid_dispatch_wrk_${{matrix.os}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{ matrix.protonGitRef }}
170170 path : /tmp/archive.tar.xz
@@ -232,22 +232,22 @@ jobs:
232232 ctest --timeout 1200 -C ${BuildType} -V -T Test --no-compress-output -I ${{matrix.shard}},,${{matrix.shards}} -j2 ${{env.DispatchCTestExtraArgs}}
233233
234234 - name : Upload test results
235- uses : actions/upload-artifact@v4
235+ uses : actions/upload-artifact@v5
236236 if : ${{ ! cancelled() }}
237237 with :
238238 name : Test_Results_${{matrix.os}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
239239 path : ${{env.DispatchBuildDir}}/Testing/**/*.xml
240240
241241 - name : Upload log files (if any tests failed)
242- uses : actions/upload-artifact@v4
242+ uses : actions/upload-artifact@v5
243243 if : failure()
244244 with :
245245 name : testLogs_${{matrix.os}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
246246 path : |
247247 qpid-dispatch/build/tests
248248
249249 - name : Upload core files (if any)
250- uses : actions/upload-artifact@v4
250+ uses : actions/upload-artifact@v5
251251 if : failure()
252252 with :
253253 name : cores_${{matrix.os}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
@@ -559,22 +559,22 @@ jobs:
559559 ctest --timeout 1200 -C ${BuildType} -V -T Test --output-on-failure --no-compress-output -I ${{matrix.shard}},,${{matrix.shards}} -j2 ${{env.DispatchCTestExtraArgs}}
560560
561561 - name : Upload test results
562- uses : actions/upload-artifact@v4
562+ uses : actions/upload-artifact@v5
563563 if : ${{ ! cancelled() }}
564564 with :
565565 name : Test_Results_${{matrix.container}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
566566 path : ${{env.DispatchBuildDir}}/Testing/**/*.xml
567567
568568 - name : Upload log files (if any tests failed)
569- uses : actions/upload-artifact@v4
569+ uses : actions/upload-artifact@v5
570570 if : failure()
571571 with :
572572 name : testLogs_${{matrix.container}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
573573 path : |
574574 qpid-dispatch/build/tests
575575
576576 - name : Upload core files (if any)
577- uses : actions/upload-artifact@v4
577+ uses : actions/upload-artifact@v5
578578 if : failure()
579579 with :
580580 name : cores_${{matrix.container}}_${{matrix.buildType}}_${{matrix.runtimeCheck}}_${{matrix.protonGitRef}}_${{matrix.shard}}
@@ -678,13 +678,13 @@ jobs:
678678 run : cmake --build "${DispatchBuildDir}" -t docs
679679
680680 - name : Store the rendered user-guide
681- uses : actions/upload-artifact@v4
681+ uses : actions/upload-artifact@v5
682682 with :
683683 name : UserGuide
684684 path : ${{env.DispatchBuildDir}}/docs/books/user-guide
685685
686686 - name : Store the rendered html man pages
687- uses : actions/upload-artifact@v4
687+ uses : actions/upload-artifact@v5
688688 with :
689689 name : Manpages
690690 path : ${{env.DispatchBuildDir}}/docs/man/*.html
@@ -693,7 +693,7 @@ jobs:
693693 run : asciidoctor-pdf --failure-level INFO ${{github.workspace}}/docs/books/user-guide/book.adoc
694694
695695 - name : Store the rendered Dispatch book PDF
696- uses : actions/upload-artifact@v4
696+ uses : actions/upload-artifact@v5
697697 with :
698698 name : book.pdf
699699 path : ${{github.workspace}}/docs/books/user-guide/book.pdf
0 commit comments