@@ -54,28 +54,28 @@ jobs:
5454 cp -L $(bazel cquery --output=files :jazzer_release) jazzer-${{ matrix.name }}.tar.gz
5555
5656 - name : Upload jazzer.jar
57- uses : actions/upload-artifact@v4
57+ uses : actions/upload-artifact@v5
5858 with :
5959 name : jazzer_tmp_${{ matrix.name }}
6060 path : jazzer-${{ matrix.name }}.jar
6161 if-no-files-found : error
6262
6363 - name : Upload release archive
64- uses : actions/upload-artifact@v4
64+ uses : actions/upload-artifact@v5
6565 with :
6666 name : jazzer_releases_${{ matrix.name }}
6767 path : jazzer-${{ matrix.name }}.tar.gz
6868 if-no-files-found : error
6969
7070 merge_jars :
71- runs-on : ubuntu-22 .04
71+ runs-on : ubuntu-24 .04
7272 needs : build_release
7373
7474 steps :
7575 - uses : actions/checkout@v5
7676
7777 - name : Download individual jars
78- uses : actions/download-artifact@v5
78+ uses : actions/download-artifact@v6
7979 with :
8080 pattern : jazzer_tmp_*
8181 merge-multiple : true
@@ -88,14 +88,14 @@ jobs:
8888 $(find "$(pwd)/_tmp/" -name '*.jar' -printf "--sources %h/%f ")
8989
9090 - name : Upload merged jar
91- uses : actions/upload-artifact@v4
91+ uses : actions/upload-artifact@v5
9292 with :
9393 name : jazzer
9494 path : _tmp/jazzer.jar
9595 if-no-files-found : error
9696
9797 maven_predeploy :
98- runs-on : ubuntu-22 .04
98+ runs-on : ubuntu-24 .04
9999 needs : merge_jars
100100
101101 environment :
@@ -119,7 +119,7 @@ jobs:
119119 echo "build --//deploy:jazzer_version=${TAG#v}" >> .bazelrc
120120
121121 - name : Download merged jar
122- uses : actions/download-artifact@v5
122+ uses : actions/download-artifact@v6
123123 with :
124124 name : jazzer
125125 path : _tmp/
@@ -133,7 +133,7 @@ jobs:
133133 run : JAZZER_JAR_PATH="$(pwd)/_tmp/jazzer.jar" bazel run deploy
134134
135135 - name : Upload Jazzer Bundle to Github Artifacts
136- uses : actions/upload-artifact@v4
136+ uses : actions/upload-artifact@v5
137137 with :
138138 name : jazzer-maven-central-bundle
139139 path : _tmp/release
@@ -151,7 +151,7 @@ jobs:
151151 uses : actions/checkout@v5
152152
153153 - name : Download individual tar.gzs
154- uses : actions/download-artifact@v5
154+ uses : actions/download-artifact@v6
155155 with :
156156 pattern : jazzer_releases_*
157157 merge-multiple : true
0 commit comments