Skip to content

Commit 13020bd

Browse files
Bump actions/upload-artifact from 4 to 5 (#14755)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9f96452 commit 13020bd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: deno task build
4646

4747
- if: ${{ inputs.save_build_artifact }}
48-
uses: actions/upload-artifact@v4.6.2
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: ab-testing-build
5151
path: ab-testing/dist

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build
3333
run: deno run build
3434
- name: Save build
35-
uses: actions/upload-artifact@v4.6.2
35+
uses: actions/upload-artifact@v5
3636
with:
3737
name: ui-build
3838
path: ab-testing/frontend/output/ab-tests.html

.github/workflows/bundle-analyser.yml

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

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

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

3636
- name: Archive code coverage results for apps bundle
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v5
3838
with:
3939
name: bundle-analyser-report-apps
4040
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@v4
44+
- uses: actions/upload-artifact@v5
4545
if: always()
4646
with:
4747
name: playwright-report-${{ matrix.group }}

0 commit comments

Comments
 (0)