Skip to content

Commit 032dc48

Browse files
ci(deps): Bump actions/upload-artifact from 6 to 7 (#19569)
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 /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 64cdce1 commit 032dc48

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
run: yarn build
131131

132132
- name: Upload build artifacts
133-
uses: actions/upload-artifact@v6
133+
uses: actions/upload-artifact@v7
134134
with:
135135
name: build-output
136136
path: ${{ env.CACHED_BUILD_PATHS }}
@@ -351,7 +351,7 @@ jobs:
351351
run: yarn build:tarball
352352

353353
- name: Archive artifacts
354-
uses: actions/upload-artifact@v6
354+
uses: actions/upload-artifact@v7
355355
with:
356356
name: ${{ github.sha }}
357357
retention-days: 90
@@ -588,7 +588,7 @@ jobs:
588588
format(' --shard={0}/{1}', matrix.shard, matrix.shards) || '' }}
589589

590590
- name: Upload Playwright Traces
591-
uses: actions/upload-artifact@v6
591+
uses: actions/upload-artifact@v7
592592
if: failure()
593593
with:
594594
name:
@@ -654,7 +654,7 @@ jobs:
654654
yarn test:loader
655655
656656
- name: Upload Playwright Traces
657-
uses: actions/upload-artifact@v6
657+
uses: actions/upload-artifact@v7
658658
if: failure()
659659
with:
660660
name: playwright-traces-job_browser_loader_tests-${{ matrix.bundle}}
@@ -1030,7 +1030,7 @@ jobs:
10301030
SENTRY_E2E_WORKSPACE_ROOT: ${{ github.workspace }}
10311031

10321032
- name: Upload Playwright Traces
1033-
uses: actions/upload-artifact@v6
1033+
uses: actions/upload-artifact@v7
10341034
if: failure()
10351035
with:
10361036
name: playwright-traces-job_e2e_playwright_tests-${{ matrix.test-application}}
@@ -1044,7 +1044,7 @@ jobs:
10441044
node ./scripts/normalize-e2e-test-dump-transaction-events.js
10451045
10461046
- name: Upload E2E Test Event Dumps
1047-
uses: actions/upload-artifact@v6
1047+
uses: actions/upload-artifact@v7
10481048
if: failure()
10491049
with:
10501050
name: E2E Test Dump (${{ matrix.label || matrix.test-application }})
@@ -1157,7 +1157,7 @@ jobs:
11571157
node ./scripts/normalize-e2e-test-dump-transaction-events.js
11581158
11591159
- name: Upload E2E Test Event Dumps
1160-
uses: actions/upload-artifact@v6
1160+
uses: actions/upload-artifact@v7
11611161
if: failure()
11621162
with:
11631163
name: E2E Test Dump (${{ matrix.label || matrix.test-application }})

.github/workflows/flaky-test-detector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
TEST_RUN_COUNT: 'AUTO'
7272

7373
- name: Upload Playwright Traces
74-
uses: actions/upload-artifact@v6
74+
uses: actions/upload-artifact@v7
7575
if: failure() && steps.test.outcome == 'failure'
7676
with:
7777
name: playwright-test-results

0 commit comments

Comments
 (0)