Skip to content

Commit 71c647d

Browse files
authored
Merge branch 'main' into npalm/managed-webhook-secret
2 parents ee95e03 + bbf8a4e commit 71c647d

File tree

16 files changed

+812
-785
lines changed

16 files changed

+812
-785
lines changed

.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030

3131
# Initializes the CodeQL tools for scanning.
3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
33+
uses: github/codeql-action/init@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
3434
with:
3535
languages: ${{ matrix.language }}
3636
build-mode: ${{ matrix.build-mode }}
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
39+
uses: github/codeql-action/analyze@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
4040
with:
4141
category: "/language:${{matrix.language}}"

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id-token: write
1717
attestations: write
1818
steps:
19-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
19+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
2020
with:
2121
node-version: 22
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -43,7 +43,7 @@ jobs:
4343
- name: Attest
4444
if: ${{ steps.release.outputs.releases_created == 'true' }}
4545
id: attest
46-
uses: actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb # v2.1.0
46+
uses: actions/attest-build-provenance@520d128f165991a6c774bcb264f323e3d70747f4 # v2.2.0
4747
with:
4848
subject-path: '${{ github.workspace }}/lambdas/functions/**/*.zip'
4949
- name: Update release notes with attestation

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
stale:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
13+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
1414
with:
1515
stale-issue-message: >
1616
This issue has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed if no further activity occurs. Thank you for your contributions.

examples/multi-runner/templates/runner-configs/linux-arm64.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ runner_config:
1919
delay_webhook_event: 0
2020
scale_down_schedule_expression: cron(* * * * ? *)
2121
runner_hook_job_started: |
22-
echo "Running pre job hook as \$(whoami)"
22+
echo "Running pre job hook as $(whoami)"
2323
runner_hook_job_completed: |
24-
echo "Running post job hook as \$(whoami)"
24+
echo "Running post job hook as $(whoami)"

lambdas/functions/ami-housekeeper/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
"@types/aws-lambda": "^8.10.146",
2121
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.10.2",
23-
"@typescript-eslint/eslint-plugin": "^8.19.1",
23+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2424
"@typescript-eslint/parser": "^8.16.0",
2525
"@vercel/ncc": "^0.38.3",
2626
"aws-sdk-client-mock": "^4.1.0",
2727
"aws-sdk-client-mock-jest": "^4.1.0",
2828
"eslint": "^8.57.0",
29-
"eslint-plugin-prettier": "5.2.1",
29+
"eslint-plugin-prettier": "5.2.3",
3030
"jest": "^29.7.0",
3131
"jest-mock": "^29.7.0",
3232
"jest-mock-extended": "^3.0.7",
@@ -39,9 +39,9 @@
3939
"dependencies": {
4040
"@aws-github-runner/aws-powertools-util": "*",
4141
"@aws-github-runner/aws-ssm-util": "*",
42-
"@aws-sdk/client-ec2": "^3.731.1",
43-
"@aws-sdk/client-ssm": "^3.731.1",
44-
"@aws-sdk/types": "^3.731.0",
42+
"@aws-sdk/client-ec2": "^3.734.0",
43+
"@aws-sdk/client-ssm": "^3.735.0",
44+
"@aws-sdk/types": "^3.734.0",
4545
"cron-parser": "^4.9.0",
4646
"typescript": "^5.7.3"
4747
},

lambdas/functions/control-plane/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
"@types/aws-lambda": "^8.10.146",
2121
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.10.2",
23-
"@typescript-eslint/eslint-plugin": "^8.19.1",
23+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2424
"@typescript-eslint/parser": "^8.16.0",
2525
"@vercel/ncc": "^0.38.3",
2626
"aws-sdk-client-mock": "^4.1.0",
2727
"aws-sdk-client-mock-jest": "^4.1.0",
2828
"eslint": "^8.57.0",
29-
"eslint-plugin-prettier": "5.2.1",
29+
"eslint-plugin-prettier": "5.2.3",
3030
"jest": "^29.7.0",
3131
"jest-mock": "^29.7.0",
3232
"jest-mock-extended": "^3.0.7",
@@ -41,9 +41,9 @@
4141
"@aws-github-runner/aws-powertools-util": "*",
4242
"@aws-github-runner/aws-ssm-util": "*",
4343
"@aws-lambda-powertools/parameters": "^2.13.0",
44-
"@aws-sdk/client-ec2": "^3.731.1",
45-
"@aws-sdk/client-sqs": "^3.731.1",
46-
"@aws-sdk/types": "^3.731.0",
44+
"@aws-sdk/client-ec2": "^3.734.0",
45+
"@aws-sdk/client-sqs": "^3.734.0",
46+
"@aws-sdk/types": "^3.734.0",
4747
"@middy/core": "^4.7.0",
4848
"@octokit/auth-app": "6.1.3",
4949
"@octokit/core": "5.2.0",

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.10.2",
2323
"@types/request": "^2.48.12",
24-
"@typescript-eslint/eslint-plugin": "^8.19.1",
24+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2525
"@typescript-eslint/parser": "^8.16.0",
2626
"@vercel/ncc": "^0.38.3",
2727
"aws-sdk-client-mock": "^4.1.0",
2828
"aws-sdk-client-mock-jest": "^4.1.0",
2929
"eslint": "^8.57.0",
30-
"eslint-plugin-prettier": "5.2.1",
30+
"eslint-plugin-prettier": "5.2.3",
3131
"jest": "^29.7.0",
3232
"jest-mock": "^29.7.0",
3333
"prettier": "3.4.2",
@@ -37,9 +37,9 @@
3737
},
3838
"dependencies": {
3939
"@aws-github-runner/aws-powertools-util": "*",
40-
"@aws-sdk/client-s3": "^3.731.1",
41-
"@aws-sdk/lib-storage": "^3.731.1",
42-
"@aws-sdk/types": "^3.731.0",
40+
"@aws-sdk/client-s3": "^3.735.0",
41+
"@aws-sdk/lib-storage": "^3.735.0",
42+
"@aws-sdk/types": "^3.734.0",
4343
"@middy/core": "^4.7.0",
4444
"@octokit/rest": "20.1.1",
4545
"axios": "^1.7.9"

lambdas/functions/termination-watcher/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"@types/aws-lambda": "^8.10.146",
1919
"@types/jest": "^29.5.14",
2020
"@types/node": "^22.10.2",
21-
"@typescript-eslint/eslint-plugin": "^8.19.1",
21+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2222
"@typescript-eslint/parser": "^8.16.0",
2323
"@vercel/ncc": "^0.38.3",
2424
"aws-sdk-client-mock": "^4.1.0",
2525
"aws-sdk-client-mock-jest": "^4.1.0",
2626
"eslint": "^8.57.0",
27-
"eslint-plugin-prettier": "5.2.1",
27+
"eslint-plugin-prettier": "5.2.3",
2828
"jest": "^29.7.0",
2929
"jest-mock": "^29.7.0",
3030
"jest-mock-extended": "^3.0.7",
@@ -36,8 +36,8 @@
3636
},
3737
"dependencies": {
3838
"@aws-github-runner/aws-powertools-util": "*",
39-
"@aws-sdk/client-ec2": "^3.731.1",
40-
"@aws-sdk/types": "^3.731.0",
39+
"@aws-sdk/client-ec2": "^3.734.0",
40+
"@aws-sdk/types": "^3.734.0",
4141
"@middy/core": "^4.7.0",
4242
"typescript": "^5.7.3"
4343
},

lambdas/functions/webhook/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
"all": "yarn build && yarn format && yarn lint && yarn test"
1717
},
1818
"devDependencies": {
19-
"@aws-sdk/client-eventbridge": "^3.731.1",
19+
"@aws-sdk/client-eventbridge": "^3.734.0",
2020
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2121
"@types/aws-lambda": "^8.10.146",
22-
"@types/express": "^4.17.21",
22+
"@types/express": "^5.0.0",
2323
"@types/jest": "^29.5.14",
2424
"@types/node": "^22.10.2",
25-
"@typescript-eslint/eslint-plugin": "^8.19.1",
25+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2626
"@typescript-eslint/parser": "^8.16.0",
2727
"@vercel/ncc": "0.38.3",
2828
"body-parser": "^1.20.3",
2929
"eslint": "^8.57.0",
30-
"eslint-plugin-prettier": "5.2.1",
30+
"eslint-plugin-prettier": "5.2.3",
3131
"express": "^4.21.2",
3232
"jest": "^29.7.0",
3333
"jest-mock": "^29.7.0",
@@ -40,7 +40,7 @@
4040
"dependencies": {
4141
"@aws-github-runner/aws-powertools-util": "*",
4242
"@aws-github-runner/aws-ssm-util": "*",
43-
"@aws-sdk/client-sqs": "^3.731.1",
43+
"@aws-sdk/client-sqs": "^3.734.0",
4444
"@middy/core": "^4.7.0",
4545
"@octokit/rest": "20.1.1",
4646
"@octokit/types": "^13.7.0",

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@
1616
"devDependencies": {
1717
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
1818
"@types/aws-lambda": "^8.10.146",
19-
"@types/express": "^4.17.21",
2019
"@types/jest": "^29.5.14",
2120
"@types/node": "^22.10.2",
22-
"@typescript-eslint/eslint-plugin": "^8.19.1",
21+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2322
"@typescript-eslint/parser": "^8.16.0",
2423
"@vercel/ncc": "0.38.3",
2524
"body-parser": "^1.20.3",
2625
"eslint": "^8.57.0",
27-
"eslint-plugin-prettier": "5.2.1",
26+
"eslint-plugin-prettier": "5.2.3",
2827
"express": "^4.21.2",
2928
"jest": "^29.7.0",
3029
"jest-mock": "^29.7.0",

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@
1616
"devDependencies": {
1717
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
1818
"@types/aws-lambda": "^8.10.146",
19-
"@types/express": "^4.17.21",
2019
"@types/jest": "^29.5.14",
2120
"@types/node": "^22.10.2",
22-
"@typescript-eslint/eslint-plugin": "^8.19.1",
21+
"@typescript-eslint/eslint-plugin": "^8.22.0",
2322
"@typescript-eslint/parser": "^8.16.0",
2423
"@vercel/ncc": "0.38.3",
2524
"body-parser": "^1.20.3",
2625
"eslint": "^8.57.0",
27-
"eslint-plugin-prettier": "5.2.1",
26+
"eslint-plugin-prettier": "5.2.3",
2827
"express": "^4.21.2",
2928
"jest": "^29.7.0",
3029
"jest-mock": "^29.7.0",
@@ -36,8 +35,8 @@
3635
},
3736
"dependencies": {
3837
"@aws-github-runner/aws-powertools-util": "*",
39-
"@aws-sdk/client-ssm": "^3.731.1",
40-
"@aws-sdk/types": "^3.731.0"
38+
"@aws-sdk/client-ssm": "^3.735.0",
39+
"@aws-sdk/types": "^3.734.0"
4140
},
4241
"nx": {
4342
"includedScripts": [

lambdas/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@nx/jest": "20.3.0",
2626
"@nx/js": "^20.3.2",
2727
"@swc-node/register": "~1.10.9",
28-
"@swc/core": "~1.10.1",
28+
"@swc/core": "~1.10.11",
2929
"@swc/helpers": "~0.5.15",
3030
"eslint": "^8.57.0",
3131
"jest": "^29.7.0",

0 commit comments

Comments
 (0)