File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -227,10 +227,10 @@ jobs:
227227 pushd bench
228228 dotnet run -c Release --project tool -- --task test --langs ${{ matrix.lang }}
229229 popd
230- - uses : actions/upload-artifact@v3
230+ - uses : actions/upload-artifact@v4
231231 if : github.ref == 'refs/heads/main'
232232 with :
233- name : build
233+ name : build-${{ matrix.lang }}
234234 path : bench/build/**/*
235235 if-no-files-found : error
236236 gate :
@@ -302,9 +302,10 @@ jobs:
302302 with :
303303 ruby-version : 3 # Not needed with a .ruby-version file
304304 bundler-cache : true # runs 'bundle install' and caches installed gems automatically
305- - uses : actions/download-artifact@v3
305+ - uses : actions/download-artifact@v4
306306 with :
307- name : build
307+ pattern : build-*
308+ merge-multiple : true
308309 path : bench/build/
309310 - name : Bench
310311 run : |
@@ -313,7 +314,7 @@ jobs:
313314 dotnet run -c Release --project tool -- --task test --ignore-missing
314315 dotnet run -c Release --project tool -- --task bench --ignore-missing
315316 popd
316- - uses : actions/upload-artifact@v3
317+ - uses : actions/upload-artifact@v4
317318 with :
318319 name : log
319320 path : bench/build/_results/**/*
@@ -333,7 +334,7 @@ jobs:
333334 - uses : pnpm/action-setup@v2
334335 with :
335336 version : 9
336- - uses : actions/download-artifact@v3
337+ - uses : actions/download-artifact@v4
337338 with :
338339 # Artifact name
339340 name : log
You can’t perform that action at this time.
0 commit comments