Skip to content

Commit 7f9ac4d

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 39a4669 commit 7f9ac4d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ab-testing-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Build
4545
run: pnpm build
4646

47-
- uses: actions/upload-artifact@v5
47+
- uses: actions/upload-artifact@v6
4848
with:
4949
name: ab-testing-build
5050
path: ab-testing/config/dist
@@ -67,7 +67,7 @@ jobs:
6767
run: pnpm build
6868

6969
- name: Save build
70-
uses: actions/upload-artifact@v5
70+
uses: actions/upload-artifact@v6
7171
with:
7272
name: ui-build
7373
path: ab-testing/frontend/output/ab-tests.html
@@ -97,7 +97,7 @@ jobs:
9797
zip -j lambda.zip ../package.json
9898
9999
- name: Save build
100-
uses: actions/upload-artifact@v5
100+
uses: actions/upload-artifact@v6
101101
with:
102102
name: ab-testing-lambda-build
103103
path: ab-testing/deploy-lambda/dist/lambda.zip

.github/workflows/bundle-analyser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919
working-directory: dotcom-rendering
2020

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

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

3535
- name: Archive code coverage results for apps bundle
36-
uses: actions/upload-artifact@v5
36+
uses: actions/upload-artifact@v6
3737
with:
3838
name: bundle-analyser-report-apps
3939
path: dotcom-rendering/dist/stats/client.apps-bundles.html

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
NODE_ENV: production
4343

44-
- uses: actions/upload-artifact@v5
44+
- uses: actions/upload-artifact@v6
4545
if: always()
4646
with:
4747
name: playwright-report-${{ matrix.group }}

0 commit comments

Comments
 (0)