Skip to content

Commit b045692

Browse files
build(deps): bump actions/upload-artifact from 6 to 7 (#1057)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h2>v7 What's new</h2> <h3>Direct Uploads</h3> <p>Adds support for uploading single files directly (unzipped). Callers can set the new <code>archive</code> parameter to <code>false</code> to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The <code>name</code> parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.</p> <h3>ESM</h3> <p>To support new versions of the <code>@actions/*</code> packages, we've upgraded the package to ESM.</p> <h2>What's Changed</h2> <ul> <li>Add proxy integration test by <a href="https://github.com/Link"><code>@​Link</code></a>- in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> <li>Upgrade the module to ESM and bump dependencies by <a href="https://github.com/danwkennedy"><code>@​danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/762">actions/upload-artifact#762</a></li> <li>Support direct file uploads by <a href="https://github.com/danwkennedy"><code>@​danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/764">actions/upload-artifact#764</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Link"><code>@​Link</code></a>- made their first contribution in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload-artifact/compare/v6...v7.0.0">https://github.com/actions/upload-artifact/compare/v6...v7.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/upload-artifact/commit/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"><code>bbbca2d</code></a> Support direct file uploads (<a href="https://redirect.github.com/actions/upload-artifact/issues/764">#764</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/589182c5a4cec8920b8c1bce3e2fab1c97a02296"><code>589182c</code></a> Upgrade the module to ESM and bump dependencies (<a href="https://redirect.github.com/actions/upload-artifact/issues/762">#762</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/47309c993abb98030a35d55ef7ff34b7fa1074b5"><code>47309c9</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-artifact/issues/754">#754</a> from actions/Link-/add-proxy-integration-tests</li> <li><a href="https://github.com/actions/upload-artifact/commit/02a8460834e70dab0ce194c64360c59dc1475ef0"><code>02a8460</code></a> Add proxy integration test</li> <li>See full diff in <a href="https://github.com/actions/upload-artifact/compare/v6...v7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=6&new-version=7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eae5b90 commit b045692

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/check-tracking-geometry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
/usr/bin/time -v \
3030
root -b -q "scripts/test_ACTS.cxx+(\"${DETECTOR_PATH}/${{matrix.detector_config}}.xml\")" | tee check_tracking_geometry.out
3131
bin/acts_geo_check check_tracking_geometry.out
32-
- uses: actions/upload-artifact@v6
32+
- uses: actions/upload-artifact@v7
3333
with:
3434
name: ${{matrix.detector_config}}.obj
3535
path: |
3636
*.obj
3737
*.mpl
38-
- uses: actions/upload-artifact@v6
38+
- uses: actions/upload-artifact@v7
3939
with:
4040
name: ${{matrix.detector_config}}.ply
4141
path: |

.github/workflows/convert-to-gdml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
geoConverter -compact2gdml -input ${DETECTOR_PATH}/${config}.xml -output ${config}.gdml ;
3030
echo "::endgroup::" ;
3131
done
32-
- uses: actions/upload-artifact@v6
32+
- uses: actions/upload-artifact@v7
3333
with:
3434
name: gdml
3535
path: "*.gdml"

.github/workflows/convert-to-step.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
detectors[OuterBarrelMPGDSubAssembly]='-l 4'
3939
# Export to one STEP file
4040
npdet_to_step $(for d in ${!detectors[@]} ; do echo part ${detectors[$d]} $d ; done) -o ${{matrix.detector_config}} $DETECTOR_PATH/${{matrix.detector_config}}.xml 2>&1 | sed '/TGeoMatrix::dtor/d'
41-
- uses: actions/upload-artifact@v6
41+
- uses: actions/upload-artifact@v7
4242
with:
4343
name: ${{matrix.detector_config}}.stp
4444
path: ${{matrix.detector_config}}.stp

.github/workflows/convert-to-tgeo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
geoConverter -compact2tgeo -input ${DETECTOR_PATH}/${config}.xml -output ${config}.root
3030
echo "::endgroup::" ;
3131
done
32-
- uses: actions/upload-artifact@v6
32+
- uses: actions/upload-artifact@v7
3333
with:
3434
name: tgeo
3535
path: "*.root"

.github/workflows/linux-eic-shell.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
run: |
102102
CC=${{ matrix.CC }} CXX=${{ matrix.CXX }} cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
103103
cmake --build build -- -k -j $(getconf _NPROCESSORS_ONLN) install
104-
- uses: actions/upload-artifact@v6
104+
- uses: actions/upload-artifact@v7
105105
with:
106106
name: build-${{ matrix.CC }}-${{ matrix.release }}-full-eic-shell
107107
path: install/
@@ -111,7 +111,7 @@ jobs:
111111
sed -i 's%\(<fiber\|<lens\)%<comment>\1%g; s%\(/fiber>\|/lens>\)%\1</comment>%g' \
112112
${DETECTOR_PATH}/compact/ecal/bic_default.xml \
113113
${DETECTOR_PATH}/compact/far_forward/ZDC_Ecal_WSciFi.xml
114-
- uses: actions/upload-artifact@v6
114+
- uses: actions/upload-artifact@v7
115115
with:
116116
name: build-${{ matrix.CC }}-${{ matrix.release }}-fast-eic-shell
117117
path: install/
@@ -165,7 +165,7 @@ jobs:
165165
export DETECTOR_CONFIG=epic_craterlake_material_map
166166
./run_material_map_validation.sh
167167
popd
168-
- uses: actions/upload-artifact@v6
168+
- uses: actions/upload-artifact@v7
169169
with:
170170
name: material_map
171171
path: |
@@ -221,7 +221,7 @@ jobs:
221221
run: |
222222
mkdir -p doc
223223
npdet_info dump ${DETECTOR_PATH}/${{matrix.detector_config}}.xml | tee doc/${{matrix.detector_config}}_constants.out
224-
- uses: actions/upload-artifact@v6
224+
- uses: actions/upload-artifact@v7
225225
with:
226226
name: ${{matrix.detector_config}}_constants.out
227227
path: doc/${{matrix.detector_config}}_constants.out
@@ -257,12 +257,12 @@ jobs:
257257
".output doc/${{matrix.detector_config}}.html" \
258258
"select * from detector_parameter_table;"
259259
sed -i '1s/^/<html><body><table border="1" style="border-collapse:collapse">\n/;$a</table></body></html>' doc/${{matrix.detector_config}}.html
260-
- uses: actions/upload-artifact@v6
260+
- uses: actions/upload-artifact@v7
261261
with:
262262
name: ${{matrix.detector_config}}_constants.toml
263263
path: doc/${{matrix.detector_config}}_constants.toml
264264
if-no-files-found: error
265-
- uses: actions/upload-artifact@v6
265+
- uses: actions/upload-artifact@v7
266266
with:
267267
name: ${{matrix.detector_config}}_DetectorParameterTable
268268
path: |
@@ -276,7 +276,7 @@ jobs:
276276
- dump-constants
277277
- dump-parameter-table
278278
steps:
279-
- uses: actions/upload-artifact/merge@v6
279+
- uses: actions/upload-artifact/merge@v7
280280
with:
281281
name: constants
282282
pattern: '*_constants.*'
@@ -287,7 +287,7 @@ jobs:
287287
needs:
288288
- dump-parameter-table
289289
steps:
290-
- uses: actions/upload-artifact/merge@v6
290+
- uses: actions/upload-artifact/merge@v7
291291
with:
292292
name: DetectorParameterTable
293293
pattern: '*_DetectorParameterTable'
@@ -338,7 +338,7 @@ jobs:
338338
mkdir -p doc
339339
checkGeometry -f true -c ${DETECTOR_PATH}/${DETECTOR_CONFIG}.xml | tee geometry_check_full.out
340340
mv statistics.root geometry_check_full.root
341-
- uses: actions/upload-artifact@v6
341+
- uses: actions/upload-artifact@v7
342342
with:
343343
name: check-geometry-full
344344
path: |
@@ -458,7 +458,7 @@ jobs:
458458
setup: install/bin/thisepic.sh
459459
run: |
460460
bin/generate_prim_file -c $DETECTOR_PATH/${{ matrix.detector_config }}.xml -o prim -D -t ${{ matrix.detector_config }}
461-
- uses: actions/upload-artifact@v6
461+
- uses: actions/upload-artifact@v7
462462
with:
463463
name: ${{ matrix.detector_config }}.prim
464464
path: prim/${{ matrix.detector_config }}.prim
@@ -487,7 +487,7 @@ jobs:
487487
run: |
488488
mkdir -p images
489489
bin/make_dawn_views -i prim/${{ matrix.detector_config }}.prim -t ${{ matrix.view }} -d scripts/${{ matrix.view }} -D
490-
- uses: actions/upload-artifact@v6
490+
- uses: actions/upload-artifact@v7
491491
with:
492492
name: ${{ matrix.detector_config }}_views_${{ matrix.view }}
493493
path: images/
@@ -517,7 +517,7 @@ jobs:
517517
run: |
518518
mkdir -p images
519519
bin/make_dawn_views -i prim/${{ matrix.detector_config }}.prim -t ${{ matrix.view }} -d scripts/${{ matrix.view }} -D -- ${{ matrix.slice }}
520-
- uses: actions/upload-artifact@v6
520+
- uses: actions/upload-artifact@v7
521521
with:
522522
name: ${{ matrix.detector_config }}_views_${{ matrix.view }}_${{ matrix.slice }}
523523
path: images/
@@ -534,7 +534,7 @@ jobs:
534534
matrix:
535535
detector_config: [epic_craterlake]
536536
steps:
537-
- uses: actions/upload-artifact/merge@v6
537+
- uses: actions/upload-artifact/merge@v7
538538
with:
539539
name: ${{ matrix.detector_config }}_views
540540
pattern: ${{ matrix.detector_config }}_views_*
@@ -561,7 +561,7 @@ jobs:
561561
setup: install/bin/thisepic.sh
562562
run: |
563563
npsim --compactFile ${DETECTOR_PATH}/${{ matrix.detector_config }}.xml -G --random.seed 1 --gun.particle "${{ matrix.particle }}-" --gun.momentumMin "1*GeV" --gun.momentumMax "20*GeV" --gun.distribution "uniform" -N 100 --outputFile sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root -v WARNING
564-
- uses: actions/upload-artifact@v6
564+
- uses: actions/upload-artifact@v7
565565
with:
566566
name: sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root
567567
path: sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root
@@ -586,7 +586,7 @@ jobs:
586586
capybara bara ref/sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root* sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root
587587
mv capybara-reports sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}
588588
touch .sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}
589-
- uses: actions/upload-artifact@v6
589+
- uses: actions/upload-artifact@v7
590590
with:
591591
name: sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.capy
592592
path: |
@@ -623,13 +623,13 @@ jobs:
623623
npsim --compactFile ${DETECTOR_PATH}/${{ matrix.detector_config }}.xml -N 100 --inputFiles ${url} --random.seed 1 --outputFile sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.edm4hep.root -v WARNING
624624
gprofng display text -ctree sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.er > sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.ctree.txt
625625
- name: Upload ROOT output
626-
uses: actions/upload-artifact@v6
626+
uses: actions/upload-artifact@v7
627627
with:
628628
name: sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.edm4hep.root
629629
path: sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.edm4hep.root
630630
if-no-files-found: error
631631
- name: Upload call tree
632-
uses: actions/upload-artifact@v6
632+
uses: actions/upload-artifact@v7
633633
with:
634634
name: sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.ctree.txt
635635
path: sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.ctree.txt
@@ -654,7 +654,7 @@ jobs:
654654
capybara bara ref/sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.edm4hep.root* sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.edm4hep.root
655655
mv capybara-reports sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}
656656
touch .sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}
657-
- uses: actions/upload-artifact@v6
657+
- uses: actions/upload-artifact@v7
658658
with:
659659
name: sim_dis_${{matrix.beam}}_minQ2=${{matrix.minq2}}_${{ matrix.detector_config }}.capy
660660
path: |
@@ -668,7 +668,7 @@ jobs:
668668
- npsim-gun
669669
- npsim-dis
670670
steps:
671-
- uses: actions/upload-artifact/merge@v6
671+
- uses: actions/upload-artifact/merge@v7
672672
with:
673673
name: capybara-report
674674
pattern: |

0 commit comments

Comments
 (0)