Skip to content

Commit 83ccbfd

Browse files
authored
build(deps): bump actions/upload-artifact from 6 to 7 (#423)
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>
2 parents f3c2026 + 0c72105 commit 83ccbfd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/builder_releaser.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
chmod +x dist/DicoGIS-cli.bin
7373
7474
- name: Save CLI binary as artifact
75-
uses: actions/upload-artifact@v6
75+
uses: actions/upload-artifact@v7
7676
with:
7777
name: DicoGIS_executable_ubuntu_CLI
7878
path: dist/DicoGIS-cli.bin
@@ -84,7 +84,7 @@ jobs:
8484
chmod +x dist/DicoGIS-gui.bin
8585
8686
- name: Save it as artifact
87-
uses: actions/upload-artifact@v6
87+
uses: actions/upload-artifact@v7
8888
with:
8989
name: DicoGIS_executable_ubuntu_GUI
9090
path: dist/DicoGIS-gui.bin
@@ -112,7 +112,7 @@ jobs:
112112
run: ./dist/DicoGIS-cli.bin inventory --input-folder ./tests/ --language EN --output-format json --output-path "${{ env.export_output_folder }}" --verbose
113113

114114
- name: Save generated files as artifact
115-
uses: actions/upload-artifact@v6
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: ubuntu_dicogis_integration_tests
118118
path: ${{ env.export_output_folder }}/*
@@ -154,7 +154,7 @@ jobs:
154154
python -O ./builder/pyinstaller_build_windows_cli.py
155155
156156
- name: Save CLI binary as artifact
157-
uses: actions/upload-artifact@v6
157+
uses: actions/upload-artifact@v7
158158
with:
159159
name: DicoGIS_executable_windows_CLI
160160
path: dist/DicoGIS-cli.exe
@@ -165,7 +165,7 @@ jobs:
165165
python -O ./builder/pyinstaller_build_windows_gui.py
166166
167167
- name: Save it as artifact
168-
uses: actions/upload-artifact@v6
168+
uses: actions/upload-artifact@v7
169169
with:
170170
name: DicoGIS_executable_windows_GUI
171171
path: dist/DicoGIS-gui.exe
@@ -188,7 +188,7 @@ jobs:
188188
./dist/DicoGIS-cli.exe inventory --input-folder ./tests/ --language EN --output-format json --output-path "${{ env.export_output_folder }}" --verbose
189189
190190
- name: Save generated files as artifact
191-
uses: actions/upload-artifact@v6
191+
uses: actions/upload-artifact@v7
192192
with:
193193
name: windows_dicogis_integration_tests
194194
path: ${{ env.export_output_folder }}/*

.github/workflows/docs_builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: sphinx-build -b html -d docs/_build/cache -j auto -q docs docs/_build/html
9292

9393
- name: Save build doc as artifact
94-
uses: actions/upload-artifact@v6
94+
uses: actions/upload-artifact@v7
9595
with:
9696
name: documentation
9797
path: docs/_build/html/*

.github/workflows/tester_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
run: dicogis-cli inventory --input-folder ./tests/ --language EN --output-format json --output-path "${{ env.export_output_folder }}" --verbose
120120

121121
- name: Save generated files as artifact
122-
uses: actions/upload-artifact@v6
122+
uses: actions/upload-artifact@v7
123123
with:
124124
name: dicogis_results_ubuntu-py${{ matrix.python-version }}
125125
path: ${{ env.export_output_folder }}/*

0 commit comments

Comments
 (0)