Skip to content

Commit 019c5ba

Browse files
committed
chore: upgrade Node.js setup actions and update package dependencies
1 parent e81b493 commit 019c5ba

File tree

5 files changed

+85
-38
lines changed

5 files changed

+85
-38
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
token: ${{ secrets.GITHUB_TOKEN }}
3333

3434
- name: Setup Node.js
35-
uses: actions/setup-node@v5
35+
uses: actions/setup-node@v6
3636
with:
3737
node-version: '20'
3838
cache: 'npm'
@@ -50,6 +50,6 @@ jobs:
5050

5151
- name: Commit formatting changes
5252
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
53-
uses: stefanzweifel/git-auto-commit-action@v6
53+
uses: stefanzweifel/git-auto-commit-action@v7
5454
with:
5555
commit_message: 'style: fix code formatting [skip ci]'

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v5
1616

17-
- uses: actions/setup-node@v5
17+
- uses: actions/setup-node@v6
1818
with:
1919
node-version: '20'
2020
registry-url: 'https://registry.npmjs.org'

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/checkout@v5
4343

4444
- name: Setup Node.js
45-
uses: actions/setup-node@v5
45+
uses: actions/setup-node@v6
4646
with:
4747
node-version: ${{ matrix.node-version }}
4848
cache: 'npm'

package-lock.json

Lines changed: 77 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,21 @@
8080
"peerDependencies": {
8181
"@inertiajs/react": "^1.0.0 || ^2.0.0",
8282
"react": "^18.0.0 || ^19.0.0",
83-
"vite": "^5.0.0 || ^6.0.0"
83+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
8484
},
8585
"devDependencies": {
8686
"@eslint/js": "^9.39.1",
8787
"@testing-library/jest-dom": "^6.8.0",
8888
"@testing-library/react": "^16.3.0",
8989
"@testing-library/user-event": "^14.6.1",
9090
"@types/jest": "^30.0.0",
91-
"@types/node": "^22.10.0",
91+
"@types/node": "^24.10.0",
9292
"@types/react": "^19.1.12",
9393
"@typescript-eslint/eslint-plugin": "^8.41.0",
9494
"@typescript-eslint/parser": "^8.41.0",
9595
"eslint": "^9.34.0",
9696
"eslint-plugin-react": "^7.0.0",
97-
"eslint-plugin-react-hooks": "^5.2.0",
97+
"eslint-plugin-react-hooks": "^7.0.1",
9898
"jest": "^30.0.0",
9999
"jest-environment-jsdom": "^30.2.0",
100100
"prettier": "^3.4.2",
@@ -103,6 +103,6 @@
103103
"tsup": "^8.3.5",
104104
"typescript": "^5.7.2",
105105
"typescript-eslint": "^8.46.3",
106-
"vite": "^6.0.0"
106+
"vite": "^7.2.2"
107107
}
108108
}

0 commit comments

Comments
 (0)