Skip to content

Commit cff69c2

Browse files
chore(deps): update all dependencies
1 parent 87e1705 commit cff69c2

File tree

5 files changed

+36
-36
lines changed

5 files changed

+36
-36
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repo
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v5
1616

1717
- name: Use Node ${{ matrix.node }}
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v6
1919
with:
2020
node-version: ${{ matrix.node }}
2121

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Setup Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: "lts/*"
2525
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ on:
77
jobs:
88
build:
99
name: Build
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v5
1414
- name: Setup Node.js
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v6
1616
with:
17-
node-version: 12
17+
node-version: 24
1818
- name: Install dependencies
1919
run: npm ci
2020
- name: Build package
2121
run: npm run build
2222
test:
2323
name: Test
2424
needs: build
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v1
28+
uses: actions/checkout@v5
2929
- name: Setup Node.js
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v6
3131
with:
32-
node-version: 12
32+
node-version: 24
3333
- name: Install dependencies
3434
run: npm ci
3535
- name: Run tests

example/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
"build": "parcel build index.html"
99
},
1010
"dependencies": {
11-
"react-app-polyfill": "^1.0.0"
11+
"react-app-polyfill": "^3.0.0"
1212
},
1313
"alias": {
1414
"react": "../node_modules/react",
1515
"react-dom": "../node_modules/react-dom/profiling",
1616
"scheduler/tracing": "../node_modules/scheduler/tracing-profiling"
1717
},
1818
"devDependencies": {
19-
"@types/react": "^16.9.11",
20-
"@types/react-dom": "^16.8.4",
21-
"parcel": "^1.12.3",
22-
"typescript": "^3.4.5"
19+
"@types/react": "^19.0.0",
20+
"@types/react-dom": "^19.0.0",
21+
"parcel": "^2.0.0",
22+
"typescript": "^5.0.0"
2323
}
2424
}

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"build-storybook": "build-storybook"
3333
},
3434
"resolutions": {
35-
"**/@typescript-eslint/eslint-plugin": "4.11.1",
36-
"**/@typescript-eslint/parser": "4.11.1",
37-
"**/typescript": "4.2.3"
35+
"**/@typescript-eslint/eslint-plugin": "8.46.2",
36+
"**/@typescript-eslint/parser": "8.46.2",
37+
"**/typescript": "5.9.3"
3838
},
3939
"peerDependencies": {
4040
"react": ">=16"
@@ -45,23 +45,23 @@
4545
}
4646
},
4747
"devDependencies": {
48-
"@babel/core": "7.13.13",
49-
"@storybook/addon-essentials": "6.4.13",
48+
"@babel/core": "7.28.5",
49+
"@storybook/addon-essentials": "8.6.14",
5050
"@storybook/addon-info": "5.3.21",
51-
"@storybook/addon-links": "6.1.21",
52-
"@storybook/addons": "6.1.21",
53-
"@storybook/react": "6.4.13",
54-
"@testing-library/react-hooks": "5.1.0",
55-
"@types/react": "17.0.3",
56-
"@types/react-dom": "17.0.3",
57-
"babel-jest": "26.6.3",
58-
"babel-loader": "8.2.2",
59-
"husky": "5.2.0",
60-
"react": "17.0.2",
61-
"react-dom": "17.0.2",
62-
"react-is": "17.0.2",
51+
"@storybook/addon-links": "9.1.15",
52+
"@storybook/addons": "7.6.17",
53+
"@storybook/react": "9.1.15",
54+
"@testing-library/react-hooks": "8.0.1",
55+
"@types/react": "19.2.2",
56+
"@types/react-dom": "19.2.2",
57+
"babel-jest": "30.2.0",
58+
"babel-loader": "10.0.0",
59+
"husky": "9.1.7",
60+
"react": "19.2.0",
61+
"react-dom": "19.2.0",
62+
"react-is": "19.2.0",
6363
"tsdx": "0.14.1",
64-
"tslib": "2.1.0",
65-
"typescript": "4.2.3"
64+
"tslib": "2.8.1",
65+
"typescript": "5.9.3"
6666
}
6767
}

0 commit comments

Comments
 (0)