Skip to content

Commit

Permalink
update deps (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyme authored Feb 5, 2025
1 parent 718d4bd commit 06f37e8
Show file tree
Hide file tree
Showing 6 changed files with 253 additions and 246 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-to-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
run_install: false

- name: Setup Node.js
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0
with:
node-version-file: .node-version
cache: pnpm
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,18 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
run_install: false

- name: Setup Node.js
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0
with:
node-version-file: .node-version
cache: pnpm

- name: Install dependencies
run: |
pnpm i --frozen-lockfile
pnpm install --frozen-lockfile
- name: Restore eslint cache
uses: actions/cache@v4.2.0
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-to-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
run_install: false

- name: Setup Node.js
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0
with:
node-version-file: .node-version
cache: pnpm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
- bump-version-update
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1.11.1
uses: actions/create-github-app-token@v1.11.3
id: app-token
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
pr_number: ${{ steps.create-pr.outputs.pr_number }}
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1.11.1
uses: actions/create-github-app-token@v1.11.3
id: app-token
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
- create-pr
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1.11.1
uses: actions/create-github-app-token@v1.11.3
id: app-token
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
id-token: write
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1.11.1
uses: actions/create-github-app-token@v1.11.3
id: app-token
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,24 @@
"prepare": "pnpm build"
},
"dependencies": {
"@eslint/compat": "1.2.5",
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin-js": "2.12.1",
"@stylistic/eslint-plugin-jsx": "2.12.1",
"@stylistic/eslint-plugin-ts": "2.12.1",
"@eslint/compat": "1.2.6",
"@eslint/js": "9.19.0",
"@stylistic/eslint-plugin-js": "3.0.1",
"@stylistic/eslint-plugin-jsx": "3.0.1",
"@stylistic/eslint-plugin-ts": "3.0.1",
"@types/eslint__js": "8.42.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"typescript-eslint": "8.19.1"
"typescript-eslint": "8.23.0"
},
"devDependencies": {
"@types/node": "22.10.5",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.18.0",
"eslint-config-flat-gitignore": "1.0.0",
"@types/node": "22.13.1",
"@typescript-eslint/parser": "8.23.0",
"eslint": "9.19.0",
"eslint-config-flat-gitignore": "2.0.0",
"globals": "15.14.0",
"rimraf": "6.0.1",
"typescript": "5.7.3"
Expand All @@ -65,7 +65,7 @@
"optional": false
}
},
"packageManager": "pnpm@10.0.0",
"packageManager": "pnpm@10.2.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
Expand Down
Loading

0 comments on commit 06f37e8

Please sign in to comment.