Skip to content

Commit 790cc69

Browse files
committed
Bumps node modules
1 parent 25808c1 commit 790cc69

7 files changed

Lines changed: 170 additions & 138 deletions

File tree

.github/workflows/dependency-review.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010
name: 'Dependency review'
1111
on:
1212
pull_request:
13-
branches: [ "main" ]
14-
workflow_dispatch:
15-
13+
branches: ["main"]
14+
workflow_dispatch: null
1615
# If using a dependency submission action in this workflow this permission will need to be set to:
1716
#
1817
# permissions:
@@ -30,6 +29,8 @@ jobs:
3029
steps:
3130
- name: 'Checkout repository'
3231
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
with:
33+
persist-credentials: false
3334
- name: 'Dependency Review'
3435
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
3536
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.

.github/workflows/deploy.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
branches:
99
- main
1010

11-
workflow_dispatch:
12-
11+
workflow_dispatch: null
1312
env:
1413
OIDC_IAM_ROLE_ARN: ${{ secrets.OIDC_IAM_ROLE_ARN }}
1514
AWS_REGION: us-west-2
@@ -25,6 +24,8 @@ jobs:
2524
steps:
2625
- name: Checkout
2726
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27+
with:
28+
persist-credentials: false
2829

2930
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
3031
name: Install pnpm
@@ -46,14 +47,9 @@ jobs:
4647

4748
runs-on: ubuntu-latest
4849
steps:
49-
- name: Configure AWS Credentials
50-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6.1.1
51-
with:
52-
role-to-assume: ${{ env.OIDC_IAM_ROLE_ARN }}
53-
role-session-name: GitHubActions
54-
aws-region: ${{ env.AWS_REGION }}
55-
5650
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
51+
with:
52+
persist-credentials: false
5753

5854
- name: Use Node.js
5955
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
@@ -73,6 +69,13 @@ jobs:
7369
- name: Build
7470
run: pnpm build
7571

72+
- name: Configure AWS Credentials
73+
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6.1.1
74+
with:
75+
role-to-assume: ${{ env.OIDC_IAM_ROLE_ARN }}
76+
role-session-name: GitHubActions
77+
aws-region: ${{ env.AWS_REGION }}
78+
7679
- name: deploy
7780
working-directory: ./example
7881
run: |

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"aws-cdk-lib": "2.254.0",
4343
"aws-lambda-mcp-server": "workspace:*",
4444
"constructs": "10.6.0",
45-
"hono": "^4.12.19",
45+
"hono": "^4.12.21",
4646
"zod": "4.4.3"
4747
}
4848
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
],
1919
"author": "poad",
2020
"license": "ISC",
21-
"packageManager": "pnpm@11.1.3"
21+
"packageManager": "pnpm@11.3.0"
2222
}

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@aws-lambda-powertools/logger": "2.33.0",
6262
"@hono/mcp": "0.3.0",
6363
"@modelcontextprotocol/sdk": "1.29.0",
64-
"hono": "^4.12.19",
64+
"hono": "^4.12.21",
6565
"zod": "4.4.3"
6666
},
6767
"peerDependencies": {

0 commit comments

Comments
 (0)