Skip to content

Commit f143a6a

Browse files
authored
Merge branch 'main' into fix/multi-runner-dispatch
2 parents 5081205 + 63ed8b6 commit f143a6a

File tree

11 files changed

+487
-576
lines changed

11 files changed

+487
-576
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
path: results.sarif
5252

5353
- name: Upload SARIF file
54-
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
54+
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
5555
with:
5656
sarif_file: results.sarif
5757
category: actions-zizmor

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
34+
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
3535
with:
3636
languages: ${{ matrix.language }}
3737
build-mode: none
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
40+
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
4141
with:
4242
category: "/language:${{matrix.language}}"

CHANGELOG.md

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

3+
## [6.5.6](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.5.5...v6.5.6) (2025-05-24)
4+
5+
6+
### Bug Fixes
7+
8+
* **lambda:** bump the aws group in /lambdas with 6 updates ([e9760c2](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/e9760c23ae1ae6daa4c2f28926859698025a148f))
9+
* **lambda:** bump the aws group in /lambdas with 7 updates ([6f2d037](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/6f2d0378154f9afbf4868a8031a6db9bae72aa48))
10+
* **lambda:** bump the aws-powertools group in /lambdas with 4 updates ([5748478](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/5748478646b8af92417448ee8d0de21b672f4732))
11+
* **lambda:** bump the octokit group across 1 directory with 4 updates ([1d7efd4](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/1d7efd4f834869df4e378f8935557e4e6db1bde3))
12+
313
## [6.5.5](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.5.4...v6.5.5) (2025-05-09)
414

515

lambdas/functions/ami-housekeeper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.808.0",
30-
"@aws-sdk/client-ssm": "^3.808.0",
29+
"@aws-sdk/client-ec2": "^3.813.0",
30+
"@aws-sdk/client-ssm": "^3.812.0",
3131
"cron-parser": "^5.0.4"
3232
},
3333
"nx": {

lambdas/functions/control-plane/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"@aws-github-runner/aws-powertools-util": "*",
3434
"@aws-github-runner/aws-ssm-util": "*",
3535
"@aws-lambda-powertools/parameters": "^2.19.1",
36-
"@aws-sdk/client-ec2": "^3.808.0",
37-
"@aws-sdk/client-sqs": "^3.808.0",
36+
"@aws-sdk/client-ec2": "^3.813.0",
37+
"@aws-sdk/client-sqs": "^3.812.0",
3838
"@middy/core": "^6.1.6",
39-
"@octokit/auth-app": "7.2.1",
40-
"@octokit/core": "6.1.5",
41-
"@octokit/plugin-throttling": "10.0.0",
39+
"@octokit/auth-app": "8.0.1",
40+
"@octokit/core": "7.0.2",
41+
"@octokit/plugin-throttling": "11.0.1",
4242
"@octokit/rest": "21.1.1",
4343
"cron-parser": "^5.0.4"
4444
},

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
},
2929
"dependencies": {
3030
"@aws-github-runner/aws-powertools-util": "*",
31-
"@aws-sdk/client-s3": "^3.808.0",
32-
"@aws-sdk/lib-storage": "^3.808.0",
31+
"@aws-sdk/client-s3": "^3.812.0",
32+
"@aws-sdk/lib-storage": "^3.812.0",
3333
"@middy/core": "^6.1.6",
3434
"@octokit/rest": "21.1.1",
3535
"axios": "^1.8.4"

lambdas/functions/termination-watcher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"@aws-github-runner/aws-powertools-util": "*",
27-
"@aws-sdk/client-ec2": "^3.808.0",
27+
"@aws-sdk/client-ec2": "^3.813.0",
2828
"@middy/core": "^6.1.6"
2929
},
3030
"nx": {

lambdas/functions/webhook/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/client-eventbridge": "^3.808.0",
20+
"@aws-sdk/client-eventbridge": "^3.812.0",
2121
"@octokit/webhooks-types": "^7.6.1",
2222
"@types/aws-lambda": "^8.10.147",
2323
"@types/express": "^5.0.0",
@@ -30,11 +30,11 @@
3030
"dependencies": {
3131
"@aws-github-runner/aws-powertools-util": "*",
3232
"@aws-github-runner/aws-ssm-util": "*",
33-
"@aws-sdk/client-sqs": "^3.808.0",
33+
"@aws-sdk/client-sqs": "^3.812.0",
3434
"@middy/core": "^6.1.6",
3535
"@octokit/rest": "21.1.1",
3636
"@octokit/types": "^14.0.0",
37-
"@octokit/webhooks": "^13.8.2",
37+
"@octokit/webhooks": "^14.0.0",
3838
"aws-lambda": "^1.0.7"
3939
},
4040
"nx": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"dependencies": {
2525
"@aws-github-runner/aws-powertools-util": "*",
26-
"@aws-sdk/client-ssm": "^3.808.0"
26+
"@aws-sdk/client-ssm": "^3.812.0"
2727
},
2828
"nx": {
2929
"includedScripts": [

lambdas/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"@typescript-eslint/parser": "^8.31.0",
3434
"@vitest/coverage-v8": "^3.0.8",
3535
"chalk": "^5.4.1",
36-
"eslint": "^9.26.0",
36+
"eslint": "^9.27.0",
3737
"eslint-plugin-prettier": "5.4.0",
3838
"nx": "20.6.4",
3939
"prettier": "^3.5.3",
4040
"ts-node": "^10.9.2",
4141
"ts-node-dev": "^2.0.0",
4242
"typescript": "^5.8.3",
4343
"vite": "^6.3.5",
44-
"vitest": "^3.1.3"
44+
"vitest": "^3.1.4"
4545
},
4646
"packageManager": "[email protected]"
4747
}

0 commit comments

Comments
 (0)