Skip to content

Commit 723e998

Browse files
authored
Merge branch 'main' into dblinkhorn/github-service-module
2 parents cc2cbef + f1d156e commit 723e998

10 files changed

Lines changed: 244 additions & 244 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [6.10.1](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.10.0...v6.10.1) (2025-11-27)
4+
5+
6+
### Bug Fixes
7+
8+
* **lambda:** bump body-parser from 2.2.0 to 2.2.1 in /lambdas ([#4913](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4913)) ([3481dbb](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/3481dbbed81eb56c217fd10358097d29533b4cfe))
9+
310
## [6.10.0](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.9.1...v6.10.0) (2025-11-24)
411

512

MAINTAINERS.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ Roles and responsibilities of the maintainers of the project.
44

55
## Maintainers
66

7-
| Name | GitHub | Affiliation |
8-
| ------------ | ------------- | ----------- |
9-
| Niek Palm | [@npalm] | Philips |
10-
| Koen de Laat | [@koendelaat] | Philips |
7+
| Name | GitHub | Affiliation |
8+
| ----------------- | ------------- | ---------------- |
9+
| Niek Palm | [@npalm] | Philips |
10+
| Koen de Laat | [@koendelaat] | Philips |
11+
| Guilherme Caulada | [@guicaulada] | Grafana Labs |
1112

1213
## Responsibilities
1314

lambdas/functions/ami-housekeeper/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"all": "yarn build && yarn format && yarn lint && yarn test"
1818
},
1919
"devDependencies": {
20-
"@aws-sdk/types": "^3.930.0",
20+
"@aws-sdk/types": "^3.936.0",
2121
"@types/aws-lambda": "^8.10.155",
2222
"@vercel/ncc": "^0.38.4",
2323
"aws-sdk-client-mock": "^4.1.0",
@@ -26,8 +26,8 @@
2626
"dependencies": {
2727
"@aws-github-runner/aws-powertools-util": "*",
2828
"@aws-github-runner/aws-ssm-util": "*",
29-
"@aws-sdk/client-ec2": "^3.934.0",
30-
"@aws-sdk/client-ssm": "^3.934.0",
29+
"@aws-sdk/client-ec2": "^3.940.0",
30+
"@aws-sdk/client-ssm": "^3.940.0",
3131
"cron-parser": "^5.4.0"
3232
},
3333
"nx": {

lambdas/functions/control-plane/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"all": "yarn build && yarn format && yarn lint && yarn test"
1818
},
1919
"devDependencies": {
20-
"@aws-sdk/types": "^3.930.0",
20+
"@aws-sdk/types": "^3.936.0",
2121
"@octokit/types": "^16.0.0",
2222
"@types/aws-lambda": "^8.10.155",
2323
"@types/node": "^22.19.0",
@@ -32,9 +32,9 @@
3232
"dependencies": {
3333
"@aws-github-runner/aws-powertools-util": "*",
3434
"@aws-github-runner/aws-ssm-util": "*",
35-
"@aws-lambda-powertools/parameters": "^2.28.1",
36-
"@aws-sdk/client-ec2": "^3.934.0",
37-
"@aws-sdk/client-sqs": "^3.934.0",
35+
"@aws-lambda-powertools/parameters": "^2.29.0",
36+
"@aws-sdk/client-ec2": "^3.940.0",
37+
"@aws-sdk/client-sqs": "^3.940.0",
3838
"@middy/core": "^6.4.5",
3939
"@octokit/auth-app": "8.1.2",
4040
"@octokit/core": "7.0.6",

lambdas/functions/gh-agent-syncer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"all": "yarn build && yarn format && yarn lint && yarn test"
1818
},
1919
"devDependencies": {
20-
"@aws-sdk/types": "^3.930.0",
20+
"@aws-sdk/types": "^3.936.0",
2121
"@types/aws-lambda": "^8.10.155",
2222
"@types/node": "^22.19.0",
2323
"@types/request": "^2.48.13",
@@ -28,8 +28,8 @@
2828
},
2929
"dependencies": {
3030
"@aws-github-runner/aws-powertools-util": "*",
31-
"@aws-sdk/client-s3": "^3.934.0",
32-
"@aws-sdk/lib-storage": "^3.934.0",
31+
"@aws-sdk/client-s3": "^3.940.0",
32+
"@aws-sdk/lib-storage": "^3.940.0",
3333
"@middy/core": "^6.4.5",
3434
"@octokit/rest": "22.0.1",
3535
"axios": "^1.13.2"

lambdas/functions/termination-watcher/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"all": "yarn build && yarn format && yarn lint && yarn test"
1616
},
1717
"devDependencies": {
18-
"@aws-sdk/types": "^3.930.0",
18+
"@aws-sdk/types": "^3.936.0",
1919
"@types/aws-lambda": "^8.10.155",
2020
"@types/node": "^22.19.0",
2121
"@vercel/ncc": "^0.38.4",
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"@aws-github-runner/aws-powertools-util": "*",
27-
"@aws-sdk/client-ec2": "^3.934.0",
27+
"@aws-sdk/client-ec2": "^3.940.0",
2828
"@middy/core": "^6.4.5"
2929
},
3030
"nx": {

lambdas/functions/webhook/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"all": "yarn build && yarn format && yarn lint && yarn test"
1818
},
1919
"devDependencies": {
20-
"@aws-sdk/client-eventbridge": "^3.934.0",
20+
"@aws-sdk/client-eventbridge": "^3.940.0",
2121
"@octokit/webhooks-types": "^7.6.1",
2222
"@types/aws-lambda": "^8.10.155",
2323
"@types/express": "^5.0.3",
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"@aws-github-runner/aws-powertools-util": "*",
3232
"@aws-github-runner/aws-ssm-util": "*",
33-
"@aws-sdk/client-sqs": "^3.934.0",
33+
"@aws-sdk/client-sqs": "^3.940.0",
3434
"@middy/core": "^6.4.5",
3535
"@octokit/rest": "22.0.1",
3636
"@octokit/types": "^16.0.0",

lambdas/libs/aws-powertools-util/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"body-parser": "^2.2.1"
2121
},
2222
"dependencies": {
23-
"@aws-lambda-powertools/logger": "^2.28.1",
24-
"@aws-lambda-powertools/metrics": "^2.28.1",
25-
"@aws-lambda-powertools/tracer": "^2.28.1",
23+
"@aws-lambda-powertools/logger": "^2.29.0",
24+
"@aws-lambda-powertools/metrics": "^2.29.0",
25+
"@aws-lambda-powertools/tracer": "^2.29.0",
2626
"aws-lambda": "^1.0.7"
2727
},
2828
"nx": {

lambdas/libs/aws-ssm-util/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
"all": "yarn build && yarn format && yarn lint && yarn test"
1616
},
1717
"devDependencies": {
18-
"@aws-sdk/types": "^3.930.0",
18+
"@aws-sdk/types": "^3.936.0",
1919
"@types/aws-lambda": "^8.10.155",
2020
"@types/node": "^22.19.0",
2121
"aws-sdk-client-mock": "^4.1.0",
2222
"aws-sdk-client-mock-jest": "^4.1.0"
2323
},
2424
"dependencies": {
2525
"@aws-github-runner/aws-powertools-util": "*",
26-
"@aws-sdk/client-ssm": "^3.934.0"
26+
"@aws-sdk/client-ssm": "^3.940.0"
2727
},
2828
"nx": {
2929
"includedScripts": [

0 commit comments

Comments
 (0)