Skip to content

Commit d7c08d8

Browse files
chore(deps): bump actions/upload-artifact from 6 to 7 (#7755)
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 07ac761 commit d7c08d8

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,31 @@ jobs:
4545
with:
4646
token: ${{ secrets.GITHUB_TOKEN }}
4747
- name: 'Upload nns-dapp wasm module'
48-
uses: actions/upload-artifact@v6
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: nns-dapp
5151
path: out/nns-dapp.wasm.gz
5252
retention-days: 3
5353
- name: 'Upload nns-dapp test wasm module'
54-
uses: actions/upload-artifact@v6
54+
uses: actions/upload-artifact@v7
5555
with:
5656
name: nns-dapp_test
5757
path: out/nns-dapp_test.wasm.gz
5858
retention-days: 3
5959
- name: 'Upload sns_aggregator wasm module'
60-
uses: actions/upload-artifact@v6
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: sns_aggregator
6363
path: out/sns_aggregator.wasm.gz
6464
retention-days: 3
6565
- name: 'Upload sns_aggregator_dev wasm module'
66-
uses: actions/upload-artifact@v6
66+
uses: actions/upload-artifact@v7
6767
with:
6868
name: sns_aggregator_dev
6969
path: out/sns_aggregator_dev.wasm.gz
7070
retention-days: 3
7171
- name: 'Upload whole out directory'
72-
uses: actions/upload-artifact@v6
72+
uses: actions/upload-artifact@v7
7373
with:
7474
name: out
7575
path: out
@@ -147,7 +147,7 @@ jobs:
147147
run: ./scripts/nns-dapp/migration-test --accounts 1000 --chunk 100
148148
- name: Upload dfx logs
149149
if: failure()
150-
uses: actions/upload-artifact@v6
150+
uses: actions/upload-artifact@v7
151151
with:
152152
name: test-upgrade-stable-dfx.log
153153
path: test-upgrade-stable-dfx.log
@@ -478,7 +478,7 @@ jobs:
478478
- name: 'Record the git commit and any tags'
479479
run: git log | head -n1 > out/commit.txt
480480
- name: 'Upload ${{ matrix.BUILD_NAME }} nns-dapp wasm module'
481-
uses: actions/upload-artifact@v6
481+
uses: actions/upload-artifact@v7
482482
with:
483483
name: nns-dapp for ${{ matrix.BUILD_NAME }}
484484
path: |
@@ -489,7 +489,7 @@ jobs:
489489
out/frontend-config.sh
490490
out/deployment-config.json
491491
- name: 'Upload sns_aggregator wasm module'
492-
uses: actions/upload-artifact@v6
492+
uses: actions/upload-artifact@v7
493493
with:
494494
name: sns_aggregator for ${{ matrix.BUILD_NAME }}
495495
path: |
@@ -501,7 +501,7 @@ jobs:
501501
assets_dir: 'out'
502502
token: ${{ secrets.GITHUB_TOKEN }}
503503
- name: 'Upload frontend assets'
504-
uses: actions/upload-artifact@v6
504+
uses: actions/upload-artifact@v7
505505
with:
506506
name: NNS frontend assets
507507
path: |

.github/workflows/reproducible.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ jobs:
5151
- name: Build
5252
run: ./scripts/docker-build
5353
- name: 'Upload nns-dapp wasm module'
54-
uses: actions/upload-artifact@v6
54+
uses: actions/upload-artifact@v7
5555
with:
5656
name: nns-dapp-mainnet-wasm-${{ matrix.os }}
5757
path: nns-dapp.wasm.gz
5858
retention-days: 3
5959
- name: 'Upload assets'
60-
uses: actions/upload-artifact@v6
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: nns-dapp-assets-${{ matrix.os }}
6363
path: assets.tar.xz
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
sha256sum assets.tar.xz > "hashes/assets_sha256_${{ matrix.os }}_${{ matrix.time }}.txt"
7272
- name: 'Upload hashes'
73-
uses: actions/upload-artifact@v6
73+
uses: actions/upload-artifact@v7
7474
with:
7575
name: hashes_${{ matrix.os }}_${{ matrix.time }}
7676
path: hashes/*.txt
@@ -79,7 +79,7 @@ jobs:
7979
needs: [docker_build]
8080
steps:
8181
- name: Merge Hashes
82-
uses: actions/upload-artifact/merge@v6
82+
uses: actions/upload-artifact/merge@v7
8383
with:
8484
name: hashes
8585
pattern: hashes_*

0 commit comments

Comments
 (0)