Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ab-testing-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Build
run: pnpm build

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: ab-testing-build
path: ab-testing/config/dist
Expand All @@ -67,7 +67,7 @@ jobs:
run: pnpm build

- name: Save build
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ui-build
path: ab-testing/frontend/output/ab-tests.html
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
zip -j lambda.zip ../package.json

- name: Save build
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ab-testing-lambda-build
path: ab-testing/deploy-lambda/dist/lambda.zip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bundle-analyser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ jobs:
working-directory: dotcom-rendering

- name: Archive code coverage results for web bundle
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bundle-analyser-report-web-bundles
path: dotcom-rendering/dist/stats/client.web-bundles.html
if-no-files-found: error

- name: Archive code coverage results for web variant bundle
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bundle-analyser-report-web
path: dotcom-rendering/dist/stats/client.web.variant-bundles.html
if-no-files-found: warn # Variant bundle only exists when an active experiment is going on

- name: Archive code coverage results for apps bundle
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bundle-analyser-report-apps
path: dotcom-rendering/dist/stats/client.apps-bundles.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
env:
NODE_ENV: production

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: always()
with:
name: playwright-report-${{ matrix.group }}
Expand Down
Loading