Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -130,7 +130,7 @@ jobs:
run: yarn build

- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-output
path: ${{ env.CACHED_BUILD_PATHS }}
Expand DownExpand Up@@ -351,7 +351,7 @@ jobs:
run: yarn build:tarball

- name: Archive artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}
retention-days: 90
Expand DownExpand Up@@ -588,7 +588,7 @@ jobs:
format(' --shard={0}/{1}', matrix.shard, matrix.shards) || '' }}

- name: Upload Playwright Traces
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name:
Expand DownExpand Up@@ -654,7 +654,7 @@ jobs:
yarn test:loader

- name: Upload Playwright Traces
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-traces-job_browser_loader_tests-${{ matrix.bundle}}
Expand DownExpand Up@@ -1030,7 +1030,7 @@ jobs:
SENTRY_E2E_WORKSPACE_ROOT: ${{ github.workspace }}

- name: Upload Playwright Traces
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-traces-job_e2e_playwright_tests-${{ matrix.test-application}}
Expand All@@ -1044,7 +1044,7 @@ jobs:
node ./scripts/normalize-e2e-test-dump-transaction-events.js

- name: Upload E2E Test Event Dumps
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: E2E Test Dump (${{ matrix.label || matrix.test-application }})
Expand DownExpand Up@@ -1157,7 +1157,7 @@ jobs:
node ./scripts/normalize-e2e-test-dump-transaction-events.js

- name: Upload E2E Test Event Dumps
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: E2E Test Dump (${{ matrix.label || matrix.test-application }})
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky-test-detector.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -71,7 +71,7 @@ jobs:
TEST_RUN_COUNT: 'AUTO'

- name: Upload Playwright Traces
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure() && steps.test.outcome == 'failure'
with:
name: playwright-test-results
Expand Down
Loading