Skip to content

Commit c1b0943

Browse files
authored
Merge branch 'main' into describe-assets-option
2 parents ffd78df + 1f7dd35 commit c1b0943

6 files changed

Lines changed: 936 additions & 755 deletions

File tree

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Set Node.js 16.x
2727
uses: actions/setup-node@v3.8.1
@@ -46,7 +46,7 @@ jobs:
4646
id: diff
4747

4848
# If index.js was different than expected, upload the expected version as an artifact
49-
- uses: actions/upload-artifact@v3
49+
- uses: actions/upload-artifact@v4
5050
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
5151
with:
5252
name: dist

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
build: # make sure build/ci work properly
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- run: |
2020
npm install
2121
- run: |
2222
npm run all
2323
test: # make sure the action works on a clean machine without building
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- uses: ./
2828
with:
2929
current-stats-json-path: ./__tests__/__mocks__/new-stats-with-chunks.json
3030
base-stats-json-path: ./__tests__/__mocks__/old-stats-with-chunks.json
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
title: With chunk and module information
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- uses: ./
3535
with:
3636
current-stats-json-path: ./__tests__/__mocks__/new-stats-assets.json

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @github/memex-reviewers
1+
* @github/web-systems-reviewers

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
pull-requests: write
9393
steps:
9494
- uses: actions/download-artifact@v3
95-
- uses: github/webpack-bundlesize-compare-action@v1.5.0
95+
- uses: github/webpack-bundlesize-compare-action@v1.8.2
9696
with:
9797
github-token: ${{ secrets.GITHUB_TOKEN }}
9898
current-stats-json-path: ./head-stats/stats.json

0 commit comments

Comments
 (0)