Skip to content

Commit 2f1f0c7

Browse files
committed
Bumps node modules
1 parent 1209535 commit 2f1f0c7

8 files changed

Lines changed: 41 additions & 33 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
git config user.name "github-actions[bot]"
3535
git config user.email "github-actions[bot]@users.noreply.github.com"
3636
37-
3837
- name: Setup Node.js
3938
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4039
with:
@@ -58,6 +57,12 @@ jobs:
5857
env:
5958
VERSION_TYPE: ${{ github.event.inputs.version }}
6059

60+
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
61+
id: app-token
62+
with:
63+
app-id: ${{ vars.APP_ID }}
64+
private-key: ${{ secrets.PRIVATE_KEY }}
65+
6166
- name: Get release notes
6267
id: release-notes
6368
run: |
@@ -120,4 +125,5 @@ jobs:
120125
labels: |
121126
Type: Release
122127
assignees: ${{ github.actor }}
128+
token: ${{ steps.app-token.outputs.token }}
123129
draft: true

.github/workflows/release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ jobs:
7575
working-directory: package
7676
run : pnpm publish --access public --provenance
7777

78+
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
79+
id: app-token
80+
with:
81+
app-id: ${{ vars.APP_ID }}
82+
private-key: ${{ secrets.PRIVATE_KEY }}
83+
7884
- name: Create GitHub Release with tag
7985
id: create-release
8086
run: |
@@ -84,7 +90,7 @@ jobs:
8490
--notes "$PR_BODY")
8591
echo "url=$RELEASE_URL" >> $GITHUB_OUTPUT
8692
env:
87-
GH_TOKEN: ${{ github.token }}
93+
GH_TOKEN: ${{ steps.app-token.outputs.token }}
8894
VERSION: ${{ steps.package.outputs.version }}
8995
SHA: ${{ github.sha }}
9096
PR_BODY: ${{ github.event.pull_request.body }}
@@ -102,7 +108,7 @@ jobs:
102108
- 🏷️ GitHub Release: $RELEASE_URL
103109
- 🔗 Workflow run: $SERVER_URL/$REPOSITORY/actions/runs/$RUN_ID"
104110
env:
105-
GH_TOKEN: ${{ github.token }}
111+
GH_TOKEN: ${{ steps.app-token.outputs.token }}
106112
PR_NUMBER: ${{ github.event.pull_request.number }}
107113
VERSION: ${{ steps.package.outputs.version }}
108114
PACKAGE_NAME: ${{ steps.package.outputs.name }}
@@ -123,7 +129,7 @@ jobs:
123129
Please check the workflow logs for details.
124130
🔗 Workflow run: $SERVER_URL/$REPOSITORY/actions/runs/$RUN_ID"
125131
env:
126-
GH_TOKEN: ${{ github.token }}
132+
GH_TOKEN: ${{ steps.app-token.outputs.token }}
127133
PR_NUMBER: ${{ github.event.pull_request.number }}
128134
VERSION: ${{ steps.package.outputs.version }}
129135
SERVER_URL: ${{ github.server_url }}

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"devDependencies": {
2020
"@eslint/compat": "2.0.2",
21-
"@eslint/js": "^10.0.1",
21+
"@eslint/js": "^9.39.2",
2222
"@hono/mcp": "0.2.3",
2323
"@hono/node-server": "1.19.9",
2424
"@stylistic/eslint-plugin": "^5.8.0",
@@ -27,7 +27,7 @@
2727
"@vitest/coverage-v8": "4.0.18",
2828
"aws-cdk": "2.1106.0",
2929
"esbuild": "0.27.3",
30-
"eslint": "^10.0.0",
30+
"eslint": "^9.39.2",
3131
"eslint-import-resolver-typescript": "4.4.4",
3232
"eslint-plugin-import": "2.32.0",
3333
"eslint-plugin-promise": "7.2.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"author": "poad",
2020
"license": "ISC",
21-
"packageManager": "pnpm@10.29.2",
21+
"packageManager": "pnpm@10.29.3",
2222
"devDependencies": {
2323
"pnpm": "^10.29.3"
2424
}

package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
},
4646
"devDependencies": {
4747
"@eslint/compat": "2.0.2",
48-
"@eslint/js": "^10.0.1",
48+
"@eslint/js": "^9.39.2",
4949
"@stylistic/eslint-plugin": "^5.8.0",
5050
"@types/node": "25.2.3",
51-
"eslint": "^10.0.0",
51+
"eslint": "^9.39.2",
5252
"eslint-import-resolver-typescript": "4.4.4",
5353
"eslint-plugin-import": "2.32.0",
5454
"eslint-plugin-promise": "7.2.1",

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ packages:
55
publishBranch: main
66

77
overrides:
8-
# eslint: ">=10.0.0"
9-
# '@eslint/js': ">=10.0.0"
10-
eslint: "^9"
11-
'@eslint/js': "^9"
8+
markdown-it: '>=14.1.1'
9+
# eslint: '>=10.0.0'
10+
# '@eslint/js': '>=10.0.0'
11+
eslint: '^9'
12+
'@eslint/js': '^9'
1213
'@stylistic/eslint-plugin': '>=5.0.0'

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ $result -ne 0 ]; then
1414
fi
1515
echo ""
1616
pwd
17-
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build
17+
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install
1818
result=$?
1919
if [ $result -ne 0 ]; then
2020
cd "${CUR}" || exit

0 commit comments

Comments
 (0)