Skip to content

Commit b854201

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-python-5.3.0
2 parents 00f9237 + f7926c8 commit b854201

File tree

15 files changed

+443
-741
lines changed

15 files changed

+443
-741
lines changed

.github/workflows/codeql.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "CodeQL Advanced"
2+
3+
on:
4+
push:
5+
branches: [ "main", "develop", "v1" ]
6+
pull_request:
7+
branches: [ "main", "develop", "v1" ]
8+
paths-ignore:
9+
- '**/*.md'
10+
schedule:
11+
- cron: '25 19 * * 2'
12+
13+
jobs:
14+
analyze:
15+
name: Analyze (${{ matrix.language }})
16+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
17+
permissions:
18+
# required for all workflows
19+
security-events: write
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
include:
25+
- language: javascript-typescript
26+
build-mode: none
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
30+
31+
# Initializes the CodeQL tools for scanning.
32+
- name: Initialize CodeQL
33+
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
34+
with:
35+
languages: ${{ matrix.language }}
36+
build-mode: ${{ matrix.build-mode }}
37+
38+
- name: Perform CodeQL Analysis
39+
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
40+
with:
41+
category: "/language:${{matrix.language}}"

.github/workflows/lambda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
working-directory: ./lambdas
2020

2121
steps:
22-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323
- name: Install dependencies
2424
run: yarn install --frozen-lockfile
2525
- name: Run prettier

.github/workflows/packer-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
working-directory: images/${{ matrix.image }}
2626
steps:
2727
- name: "Checkout"
28-
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
28+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2929
- name: packer init
3030
run: packer init .
3131
- name: check packer formatting

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
contents: write
1515
actions: write
1616
steps:
17-
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
17+
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
1818
with:
1919
node-version: 20
20-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
- name: Build dist
2222
working-directory: lambdas
2323
run: yarn install --frozen-lockfile && yarn run test && yarn dist

.github/workflows/semantic-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Semantic Commit Message Check
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
1818
name: Check PR for Semantic Commit Message
1919
env:

.github/workflows/terraform.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
image: hashicorp/terraform:${{ matrix.terraform }}
2424
steps:
2525
- name: "Checkout"
26-
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
26+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2727
- name: "Fake zip files" # Validate will fail if it cannot find the zip files
2828
run: |
2929
touch lambdas/functions/webhook/webhook.zip
@@ -89,7 +89,7 @@ jobs:
8989
container:
9090
image: hashicorp/terraform:${{ matrix.terraform }}
9191
steps:
92-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
92+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9393
- name: terraform init
9494
run: terraform init -get -backend=false -input=false
9595
- if: contains(matrix.terraform, '1.3.')
@@ -147,7 +147,7 @@ jobs:
147147
container:
148148
image: hashicorp/terraform:${{ matrix.terraform }}
149149
steps:
150-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
150+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
151151
- name: terraform init
152152
run: terraform init -get -backend=false -input=false
153153
- if: contains(matrix.terraform, '1.5.')

.github/workflows/update-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout with GITHUB Action token
19-
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222

@@ -56,7 +56,7 @@ jobs:
5656
needs: [docs]
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
59+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6060
- name: Configure Git Credentials
6161
run: |
6262
git config user.name github-actions[bot]

lambdas/functions/ami-housekeeper/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"devDependencies": {
1919
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2020
"@types/aws-lambda": "^8.10.145",
21-
"@types/jest": "^29.5.12",
21+
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.5.4",
2323
"@typescript-eslint/eslint-plugin": "^8.9.0",
2424
"@typescript-eslint/parser": "^8.11.0",
@@ -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.677.0",
43-
"@aws-sdk/client-ssm": "^3.677.0",
44-
"@aws-sdk/types": "^3.664.0",
42+
"@aws-sdk/client-ec2": "^3.679.0",
43+
"@aws-sdk/client-ssm": "^3.679.0",
44+
"@aws-sdk/types": "^3.679.0",
4545
"cron-parser": "^4.9.0",
4646
"typescript": "^5.6.3"
4747
},

lambdas/functions/control-plane/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"devDependencies": {
1919
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2020
"@types/aws-lambda": "^8.10.145",
21-
"@types/jest": "^29.5.12",
21+
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.5.4",
2323
"@typescript-eslint/eslint-plugin": "^8.9.0",
2424
"@typescript-eslint/parser": "^8.11.0",
@@ -41,9 +41,9 @@
4141
"@aws-github-runner/aws-powertools-util": "*",
4242
"@aws-github-runner/aws-ssm-util": "*",
4343
"@aws-lambda-powertools/parameters": "^2.9.0",
44-
"@aws-sdk/client-ec2": "^3.677.0",
45-
"@aws-sdk/client-sqs": "^3.677.0",
46-
"@aws-sdk/types": "^3.664.0",
44+
"@aws-sdk/client-ec2": "^3.679.0",
45+
"@aws-sdk/client-sqs": "^3.679.0",
46+
"@aws-sdk/types": "^3.679.0",
4747
"@middy/core": "^4.7.0",
4848
"@octokit/auth-app": "6.1.2",
4949
"@octokit/core": "5.2.0",

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"devDependencies": {
1919
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2020
"@types/aws-lambda": "^8.10.145",
21-
"@types/jest": "^29.5.12",
21+
"@types/jest": "^29.5.14",
2222
"@types/node": "^22.5.4",
2323
"@types/request": "^2.48.12",
2424
"@typescript-eslint/eslint-plugin": "^8.9.0",
@@ -37,9 +37,9 @@
3737
},
3838
"dependencies": {
3939
"@aws-github-runner/aws-powertools-util": "*",
40-
"@aws-sdk/client-s3": "^3.677.0",
41-
"@aws-sdk/lib-storage": "^3.677.0",
42-
"@aws-sdk/types": "^3.664.0",
40+
"@aws-sdk/client-s3": "^3.679.0",
41+
"@aws-sdk/lib-storage": "^3.679.0",
42+
"@aws-sdk/types": "^3.679.0",
4343
"@middy/core": "^4.7.0",
4444
"@octokit/rest": "20.1.1",
4545
"axios": "^1.7.7"

lambdas/functions/termination-watcher/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"devDependencies": {
1717
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
1818
"@types/aws-lambda": "^8.10.145",
19-
"@types/jest": "^29.5.12",
19+
"@types/jest": "^29.5.14",
2020
"@types/node": "^22.5.4",
2121
"@typescript-eslint/eslint-plugin": "^8.9.0",
2222
"@typescript-eslint/parser": "^8.11.0",
@@ -36,8 +36,8 @@
3636
},
3737
"dependencies": {
3838
"@aws-github-runner/aws-powertools-util": "*",
39-
"@aws-sdk/client-ec2": "^3.677.0",
40-
"@aws-sdk/types": "^3.664.0",
39+
"@aws-sdk/client-ec2": "^3.679.0",
40+
"@aws-sdk/types": "^3.679.0",
4141
"@middy/core": "^4.7.0",
4242
"typescript": "^5.6.3"
4343
},

lambdas/functions/webhook/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
"all": "yarn build && yarn format && yarn lint && yarn test"
1717
},
1818
"devDependencies": {
19-
"@aws-sdk/client-eventbridge": "^3.670.0",
19+
"@aws-sdk/client-eventbridge": "^3.679.0",
2020
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2121
"@types/aws-lambda": "^8.10.145",
2222
"@types/express": "^4.17.21",
23-
"@types/jest": "^29.5.12",
23+
"@types/jest": "^29.5.14",
2424
"@types/node": "^22.5.4",
2525
"@typescript-eslint/eslint-plugin": "^8.9.0",
2626
"@typescript-eslint/parser": "^8.11.0",
2727
"@vercel/ncc": "0.38.1",
2828
"body-parser": "^1.20.3",
2929
"eslint": "^8.57.0",
3030
"eslint-plugin-prettier": "5.2.1",
31-
"express": "^4.20.0",
31+
"express": "^4.21.1",
3232
"jest": "^29.7.0",
3333
"jest-mock": "^29.7.0",
3434
"nock": "^13.5.4",
@@ -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.677.0",
43+
"@aws-sdk/client-sqs": "^3.679.0",
4444
"@middy/core": "^4.7.0",
4545
"@octokit/rest": "20.1.1",
4646
"@octokit/types": "^13.6.1",

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
1818
"@types/aws-lambda": "^8.10.145",
1919
"@types/express": "^4.17.21",
20-
"@types/jest": "^29.5.12",
20+
"@types/jest": "^29.5.14",
2121
"@types/node": "^22.5.4",
2222
"@typescript-eslint/eslint-plugin": "^8.9.0",
2323
"@typescript-eslint/parser": "^8.11.0",
2424
"@vercel/ncc": "0.38.1",
2525
"body-parser": "^1.20.3",
2626
"eslint": "^8.57.0",
2727
"eslint-plugin-prettier": "5.2.1",
28-
"express": "^4.20.0",
28+
"express": "^4.21.1",
2929
"jest": "^29.7.0",
3030
"jest-mock": "^29.7.0",
3131
"nock": "^13.5.4",

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
1818
"@types/aws-lambda": "^8.10.145",
1919
"@types/express": "^4.17.21",
20-
"@types/jest": "^29.5.12",
20+
"@types/jest": "^29.5.14",
2121
"@types/node": "^22.5.4",
2222
"@typescript-eslint/eslint-plugin": "^8.9.0",
2323
"@typescript-eslint/parser": "^8.11.0",
2424
"@vercel/ncc": "0.38.1",
2525
"body-parser": "^1.20.3",
2626
"eslint": "^8.57.0",
2727
"eslint-plugin-prettier": "5.2.1",
28-
"express": "^4.20.0",
28+
"express": "^4.21.1",
2929
"jest": "^29.7.0",
3030
"jest-mock": "^29.7.0",
3131
"nock": "^13.5.4",
@@ -36,8 +36,8 @@
3636
},
3737
"dependencies": {
3838
"@aws-github-runner/aws-powertools-util": "*",
39-
"@aws-sdk/client-ssm": "^3.677.0",
40-
"@aws-sdk/types": "^3.664.0"
39+
"@aws-sdk/client-ssm": "^3.679.0",
40+
"@aws-sdk/types": "^3.679.0"
4141
},
4242
"nx": {
4343
"includedScripts": [

0 commit comments

Comments
 (0)