Skip to content

Commit 47c91fe

Browse files
committed
Fix the typo and more
1 parent 808c035 commit 47c91fe

73 files changed

Lines changed: 373 additions & 500 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ updates:
1010
rebase-strategy: auto
1111
assignees:
1212
- poad
13+
cooldown:
14+
default-days: 3
15+
groups:
16+
actions:
17+
patterns:
18+
- '*'
1319

1420
- package-ecosystem: npm
1521
directories:
@@ -21,14 +27,14 @@ updates:
2127
- '/agents//langgraph-deep-agent/'
2228
- '/basic/cdk/'
2329
- '/basic/app/'
24-
- '/mpc/clients/langgraph-mpc-client/'
25-
- '/mpc/clients/mastra-mcp-client/'
26-
- '/mpc/clients/mcp-client-http/'
27-
- '/mpc/clients/mcp-client-typescript/'
28-
- '/mpc/servers/postgresql-http/'
29-
- '/mpc/servers/weather/'
30-
- '/mpc/servers/weather-http/'
31-
- '/mpc/servers/resource-mcp-server/'
30+
- '/mcp/clients/langgraph-mcp-client/'
31+
- '/mcp/clients/mastra-mcp-client/'
32+
- '/mcp/clients/mcp-client-http/'
33+
- '/mcp/clients/mcp-client-typescript/'
34+
- '/mcp/servers/postgresql-http/'
35+
- '/mcp/servers/weather/'
36+
- '/mcp/servers/weather-http/'
37+
- '/mcp/servers/resource-mcp-server/'
3238
- '/node-llama-cpp/'
3339
- '/rag/app/'
3440
- '/rag/batch/'
@@ -37,6 +43,10 @@ updates:
3743
schedule:
3844
interval: daily
3945
timezone: Asia/Tokyo
46+
cooldown:
47+
default-days: 3
48+
exclude:
49+
- 'pnpm'
4050
allow:
4151
- dependency-type: all
4252
rebase-strategy: auto

.github/workflows/auto-merge.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ on:
44
pull_request:
55

66
permissions:
7-
contents: write
7+
contents: read
88
pull-requests: write
99

1010
jobs:
11-
pull-request-auto-merge:
11+
auto-merge:
1212
if: ${{ !github.event.pull_request.draft }}
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
16-
1715
- name: Enable auto-merge for Pull Request
1816
run: |
1917
gh pr review --approve "$PR_URL"

.github/workflows/ci.yml

Lines changed: 2 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,14 @@ on:
1212

1313
jobs:
1414
lint-build:
15-
strategy:
16-
matrix:
17-
node-version: [22.x]
18-
1915
runs-on: ubuntu-latest
2016
steps:
2117
- uses: actions/checkout@v5
2218

23-
- name: Use Node.js ${{ matrix.node-version }}
19+
- name: Use Node.js
2420
uses: actions/setup-node@v5
2521
with:
26-
node-version: ${{ matrix.node-version }}
22+
node-version: 'lts/*'
2723
check-latest: true
2824
package-manager-cache: false
2925

@@ -42,73 +38,3 @@ jobs:
4238

4339
- name: lint
4440
run: bun run lint
45-
46-
# lint-build-mastra:
47-
# strategy:
48-
# matrix:
49-
# node-version: [22.x]
50-
51-
# runs-on: ubuntu-latest
52-
# steps:
53-
# - uses: actions/checkout@v5
54-
55-
# - name: Use Node.js ${{ matrix.node-version }}
56-
# uses: actions/setup-node@v4
57-
# with:
58-
# node-version: ${{ matrix.node-version }}
59-
# check-latest: true
60-
61-
# - uses: pnpm/action-setup@v4
62-
# name: Install pnpm
63-
# with:
64-
# run_install: |
65-
# - recursive: true
66-
# args: [--no-frozen-lockfile]
67-
# cwd: agents/agent-mastra
68-
# - args: [--global, esbuild]
69-
# package_json_file: agents/agent-mastra/package.json
70-
71-
# - uses: oven-sh/setup-bun@v2
72-
73-
# - name: lint
74-
# working-directory: agents/agent-mastra
75-
# run: bun run lint
76-
77-
# - name: build
78-
# working-directory: agents/agent-mastra
79-
# run: bun run build
80-
81-
# lint-build-mastra-mcp-client:
82-
# strategy:
83-
# matrix:
84-
# node-version: [22.x]
85-
86-
# runs-on: ubuntu-latest
87-
# steps:
88-
# - uses: actions/checkout@v5
89-
90-
# - name: Use Node.js ${{ matrix.node-version }}
91-
# uses: actions/setup-node@v4
92-
# with:
93-
# node-version: ${{ matrix.node-version }}
94-
# check-latest: true
95-
96-
# - uses: pnpm/action-setup@v4
97-
# name: Install pnpm
98-
# with:
99-
# run_install: |
100-
# - recursive: true
101-
# args: [--no-frozen-lockfile]
102-
# cwd: mpc/clients/mastra-mcp-client
103-
# - args: [--global, esbuild]
104-
# package_json_file: mpc/clients/mastra-mcp-client/package.json
105-
106-
# - uses: oven-sh/setup-bun@v2
107-
108-
# - name: lint
109-
# working-directory: mpc/clients/mastra-mcp-client
110-
# run: bun run lint
111-
112-
# - name: build
113-
# working-directory: mpc/clients/mastra-mcp-client
114-
# run: bun run build

.github/workflows/deploy.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ jobs:
2525
group: "cloudformation-llm-basic"
2626
cancel-in-progress: false
2727

28-
strategy:
29-
matrix:
30-
node-version: [22.x]
31-
3228
runs-on: ubuntu-latest
3329
steps:
3430
- name: Configure AWS Credentials
@@ -40,10 +36,10 @@ jobs:
4036

4137
- uses: actions/checkout@v5
4238

43-
- name: Use Node.js ${{ matrix.node-version }}
39+
- name: Use Node.js
4440
uses: actions/setup-node@v5
4541
with:
46-
node-version: ${{ matrix.node-version }}
42+
node-version: 'lts/*'
4743
check-latest: true
4844
package-manager-cache: false
4945

@@ -75,9 +71,6 @@ jobs:
7571
concurrency:
7672
group: "rag-examle-cloudformation"
7773
cancel-in-progress: false
78-
strategy:
79-
matrix:
80-
node-version: [22.x]
8174

8275
runs-on: ubuntu-latest
8376
steps:
@@ -90,10 +83,10 @@ jobs:
9083

9184
- uses: actions/checkout@v5
9285

93-
- name: Use Node.js ${{ matrix.node-version }}
86+
- name: Use Node.js
9487
uses: actions/setup-node@v5
9588
with:
96-
node-version: ${{ matrix.node-version }}
89+
node-version: 'lts/*'
9790
check-latest: true
9891
package-manager-cache: false
9992

.github/workflows/opencode.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
name: opencode
22

33
on:
4-
issue_comment:
5-
types: [created]
4+
# https://github.com/sst/opencode/pull/2614 がマージされて、アクションが動作するようになってから再検証する。
5+
# issue_comment:
6+
# types: [created]
67

7-
pull_request:
8+
# pull_request_review:
9+
# types: [submitted]
810

9-
pull_request_review:
10-
types: [submitted]
11+
# pull_request_review_comment:
12+
# types: [created]
1113

12-
pull_request_review_comment:
13-
types: [created]
14+
workflow_dispatch:
1415

1516
jobs:
1617
opencode:
17-
if: |
18-
github.event_name == 'pull_request' ||
19-
contains(github.event.comment.body, ' /oc') ||
20-
startsWith(github.event.comment.body, '/oc') ||
21-
contains(github.event.comment.body, ' /opencode') ||
22-
startsWith(github.event.comment.body, '/opencode')
18+
# https://github.com/sst/opencode/pull/2614 がマージされて、アクションが動作するようになってから再検証する。
19+
# if: |
20+
# github.event_name == 'pull_request' ||
21+
# contains(github.event.comment.body, ' /oc') ||
22+
# startsWith(github.event.comment.body, '/oc') ||
23+
# contains(github.event.comment.body, ' /opencode') ||
24+
# startsWith(github.event.comment.body, '/opencode')
2325
runs-on: ubuntu-latest
2426
permissions:
2527
contents: read
@@ -29,7 +31,7 @@ jobs:
2931
uses: actions/checkout@v5
3032

3133
- name: Run opencode
32-
uses: sst/opencode/github@v0.11.1
34+
uses: sst/opencode/github@v0.11.3
3335
env:
3436
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3537
with:

agents/agent-mastra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "module",
1616
"dependencies": {
1717
"@ai-sdk/amazon-bedrock": "^3.0.23",
18-
"@ai-sdk/azure": "^2.0.34",
18+
"@ai-sdk/azure": "^2.0.35",
1919
"@mastra/core": "^0.18.0",
2020
"@mastra/libsql": "^0.14.3",
2121
"@mastra/loggers": "^0.10.13",

agents/langgraph-deep-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"vitest": "^3.2.4"
3030
},
3131
"dependencies": {
32-
"@aws-sdk/credential-provider-node": "^3.895.0",
32+
"@aws-sdk/credential-provider-node": "^3.896.0",
3333
"@langchain/anthropic": "^0.3.28",
3434
"@langchain/aws": "^0.1.15",
3535
"@langchain/community": "^0.3.56",

basic/cdk/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^22.18.6",
2121
"@types/uuid": "^10.0.0",
2222
"@vitest/eslint-plugin": "^1.3.12",
23-
"aws-cdk": "^2.1029.2",
23+
"aws-cdk": "^2.1029.3",
2424
"dotenv": "^16.6.1",
2525
"eslint": "^9.36.0",
2626
"eslint-import-resolver-typescript": "^4.4.4",
@@ -35,10 +35,10 @@
3535
"vitest": "^3.2.4"
3636
},
3737
"dependencies": {
38-
"@arizeai/openinference-instrumentation-bedrock": "^0.4.0",
39-
"@arizeai/openinference-instrumentation-langchain": "^3.4.2",
40-
"@aws-lambda-powertools/logger": "^2.26.1",
41-
"@aws-sdk/credential-provider-node": "^3.895.0",
38+
"@arizeai/openinference-instrumentation-bedrock": "^0.4.1",
39+
"@arizeai/openinference-instrumentation-langchain": "^3.4.3",
40+
"@aws-lambda-powertools/logger": "^2.27.0",
41+
"@aws-sdk/credential-provider-node": "^3.896.0",
4242
"@langchain/anthropic": "^0.3.28",
4343
"@langchain/aws": "^0.1.15",
4444
"@langchain/core": "^0.3.77",

common/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"lint-fix": "eslint . --fix"
2525
},
2626
"dependencies": {
27-
"@aws-lambda-powertools/logger": "^2.26.1",
27+
"@aws-lambda-powertools/logger": "^2.27.0",
2828
"@langchain/aws": "^0.1.15",
2929
"@langchain/core": "^0.3.77",
3030
"@langchain/openai": "^0.5.18",

common/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@stylistic/eslint-plugin": "^5.4.0",
2929
"@types/node": "^22.18.6",
3030
"@vitest/eslint-plugin": "^1.3.12",
31-
"aws-cdk": "^2.1029.2",
31+
"aws-cdk": "^2.1029.3",
3232
"eslint": "^9.36.0",
3333
"eslint-import-resolver-typescript": "^4.4.4",
3434
"eslint-plugin-import": "^2.32.0",

0 commit comments

Comments
 (0)