Skip to content

Commit ebbff38

Browse files
authored
Merge branch 'main' into amazon-linux-2023-arm
2 parents defeda2 + 0fb6f4a commit ebbff38

File tree

172 files changed

+5326
-3083
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+5326
-3083
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#syntax=docker/dockerfile:1.2
2-
FROM node@sha256:0c0734eb7051babbb3e95cd74e684f940552b31472152edf0bb23e54ab44a0d7 as build
2+
FROM node@sha256:1501d5fd51032aa10701a7dcc9e6c72ab1e611a033ffcf08b6d5882e9165f63e as build
33
WORKDIR /lambdas
44
RUN apt-get update \
55
&& apt-get install -y zip \

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node@sha256:acdce1045a2ddce4c66846d5cd09adf746d157fce9233124e4925b647f192b2e
1+
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node@sha256:d09eac5cd85fb4bd70770fa3f88ee9dfdd0b09f8b85455a0e039048677276749

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ updates:
1515
directory: "/"
1616
schedule:
1717
interval: "weekly"
18+
cooldown:
19+
default-days: 7
1820
groups:
1921
github:
2022
patterns:
@@ -25,6 +27,8 @@ updates:
2527
directory: "/lambdas"
2628
schedule:
2729
interval: "weekly"
30+
cooldown:
31+
default-days: 7
2832
groups:
2933
aws:
3034
patterns:
@@ -51,31 +55,49 @@ updates:
5155
commit-message:
5256
prefix: "fix(lambda)"
5357
prefix-development: "chore(lambda)"
58+
# Ignore major version updates for Node.js related packages to keep aligned with Lambda runtime as configured via Terraform
59+
ignore:
60+
- dependency-name: "@types/node"
61+
update-types: ["version-update:semver-major"]
5462

5563
- package-ecosystem: "docker"
5664
directory: "/.ci/Dockerfile"
5765
schedule:
5866
interval: "weekly"
67+
cooldown:
68+
default-days: 7
5969
labels:
6070
- "dependencies"
6171
- "docker"
6272
commit-message:
6373
prefix: "chore(docker)"
74+
# Ignore major version updates for Node.js Docker images to keep aligned with Lambda runtime as configured via Terraform
75+
ignore:
76+
- dependency-name: "node"
77+
update-types: ["version-update:semver-major"]
6478

6579
- package-ecosystem: "docker"
6680
directory: "/.devcontainer/Dockerfile"
6781
schedule:
6882
interval: "weekly"
83+
cooldown:
84+
default-days: 7
6985
labels:
7086
- "dependencies"
7187
- "docker"
7288
commit-message:
7389
prefix: "chore(devcontainer)"
90+
# Ignore major version updates for Node.js Docker images to keep aligned with Lambda runtime as configured via Terraform
91+
ignore:
92+
- dependency-name: "mcr.microsoft.com/vscode/devcontainers/typescript-node"
93+
update-types: ["version-update:semver-major"]
7494

7595
- package-ecosystem: "pip"
7696
directory: "/.github/workflows/mkdocs"
7797
schedule:
7898
interval: "weekly"
99+
cooldown:
100+
default-days: 7
79101
groups:
80102
python-deps:
81103
patterns:

.github/workflows/codeql.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
schedule:
1111
- cron: '25 19 * * 2'
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
1317
permissions:
1418
contents: read
1519

@@ -27,23 +31,23 @@ jobs:
2731

2832
steps:
2933
- name: Harden the runner (Audit all outbound calls)
30-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
34+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
3135
with:
3236
egress-policy: audit
3337

3438
- name: Checkout repository
35-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
39+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3640
with:
3741
persist-credentials: false
3842

3943
# Initializes the CodeQL tools for scanning.
4044
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
45+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4246
with:
4347
languages: ${{ matrix.language }}
4448
build-mode: none
4549

4650
- name: Perform CodeQL Analysis
47-
uses: github/codeql-action/analyze@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
51+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4852
with:
4953
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
name: 'Dependency Review'
1010
on: [pull_request]
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
1216
permissions: {}
1317

1418
jobs:
@@ -20,15 +24,15 @@ jobs:
2024
pull-requests: write # for actions/dependency-review-action to comment on PRs
2125
steps:
2226
- name: Harden the runner (Audit all outbound calls)
23-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
27+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
2428
with:
2529
egress-policy: audit
2630

2731
- name: 'Checkout Repository'
28-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
32+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2933
with:
3034
persist-credentials: false
3135
- name: 'Dependency Review'
32-
uses: actions/dependency-review-action@56339e523c0409420f6c2c9a2f4292bbb3c07dd3 # v4.8.0
36+
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
3337
with:
3438
comment-summary-in-pr: always

.github/workflows/lambda.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
- 'lambdas/**'
99
- '.github/workflows/lambda.yml'
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1115
permissions:
1216
contents: read
1317

@@ -16,18 +20,18 @@ jobs:
1620
name: Build and test lambda functions
1721
runs-on: ubuntu-latest
1822
container:
19-
image: node:22@sha256:2bb201f33898d2c0ce638505b426f4dd038cc00e5b2b4cbba17b069f0fff1496
23+
image: node:24@sha256:aa648b387728c25f81ff811799bbf8de39df66d7e2d9b3ab55cc6300cb9175d9
2024
defaults:
2125
run:
2226
working-directory: ./lambdas
2327

2428
steps:
2529
- name: Harden the runner (Audit all outbound calls)
26-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
30+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
2731
with:
2832
egress-policy: audit
2933

30-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
34+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3135
with:
3236
persist-credentials: false
3337
- name: Install dependencies
@@ -42,7 +46,7 @@ jobs:
4246
- name: Build distribution
4347
run: yarn build
4448
- name: Upload coverage report
45-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
49+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4650
if: ${{ failure() }}
4751
with:
4852
name: coverage-reports
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mkdocs-material==9.6.20
1+
mkdocs-material==9.7.1

.github/workflows/mkdocs/requirements.txt

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,7 @@ charset-normalizer==3.4.2 \
118118
click==8.2.1 \
119119
--hash=sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202 \
120120
--hash=sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b
121-
# via
122-
# mkdocs
123-
# mkdocs-material
121+
# via mkdocs
124122
colorama==0.4.6 \
125123
--hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \
126124
--hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
@@ -225,9 +223,9 @@ mkdocs-get-deps==0.2.0 \
225223
--hash=sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c \
226224
--hash=sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134
227225
# via mkdocs
228-
mkdocs-material==9.6.20 \
229-
--hash=sha256:b8d8c8b0444c7c06dd984b55ba456ce731f0035c5a1533cc86793618eb1e6c82 \
230-
--hash=sha256:e1f84d21ec5fb730673c4259b2e0d39f8d32a3fef613e3a8e7094b012d43e790
226+
mkdocs-material==9.7.1 \
227+
--hash=sha256:3f6100937d7d731f87f1e3e3b021c97f7239666b9ba1151ab476cabb96c60d5c \
228+
--hash=sha256:89601b8f2c3e6c6ee0a918cc3566cb201d40bf37c3cd3c2067e26fadb8cce2b8
231229
# via -r requirements.in
232230
mkdocs-material-extensions==1.3.1 \
233231
--hash=sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443 \
@@ -253,9 +251,9 @@ pygments==2.19.2 \
253251
--hash=sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \
254252
--hash=sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b
255253
# via mkdocs-material
256-
pymdown-extensions==10.16 \
257-
--hash=sha256:71dac4fca63fabeffd3eb9038b756161a33ec6e8d230853d3cecf562155ab3de \
258-
--hash=sha256:f5dd064a4db588cb2d95229fc4ee63a1b16cc8b4d0e6145c0899ed8723da1df2
254+
pymdown-extensions==10.16.1 \
255+
--hash=sha256:aace82bcccba3efc03e25d584e6a22d27a8e17caa3f4dd9f207e49b787aa9a91 \
256+
--hash=sha256:d6ba157a6c03146a7fb122b2b9a121300056384eafeec9c9f9e584adfdb2a32d
259257
# via mkdocs-material
260258
python-dateutil==2.9.0.post0 \
261259
--hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \
@@ -332,9 +330,9 @@ six==1.17.0 \
332330
--hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
333331
--hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
334332
# via python-dateutil
335-
urllib3==2.5.0 \
336-
--hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \
337-
--hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc
333+
urllib3==2.6.3 \
334+
--hash=sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed \
335+
--hash=sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4
338336
# via requests
339337
watchdog==6.0.0 \
340338
--hash=sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a \

.github/workflows/ossf-scorecard.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
push:
88
branches: [ "main" ]
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
permissions:
1115
contents: read # for actions/checkout and repository analysis
1216

@@ -21,17 +25,17 @@ jobs:
2125

2226
steps:
2327
- name: Harden the runner (Audit all outbound calls)
24-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
28+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
2529
with:
2630
egress-policy: audit
2731

2832
- name: "Checkout code"
29-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
33+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3034
with:
3135
persist-credentials: false
3236

3337
- name: "Run analysis"
34-
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
38+
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
3539
with:
3640
results_file: results.sarif
3741
results_format: sarif
@@ -40,7 +44,7 @@ jobs:
4044
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4145
# format to the repository Actions tab.
4246
- name: "Upload artifact"
43-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4448
with:
4549
name: SARIF file
4650
path: results.sarif
@@ -49,6 +53,6 @@ jobs:
4953
# Upload the results to GitHub's code scanning dashboard (optional).
5054
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
5155
- name: "Upload to code-scanning"
52-
uses: github/codeql-action/upload-sarif@dd196fa9ce80b6bacc74ca1c32bd5b0ba22efca7 # v3.28.3
56+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
5357
with:
5458
sarif_file: results.sarif

.github/workflows/ovs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
merge_group:
66
branches: [main]
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
permissions: {}
913

1014
jobs:
@@ -13,4 +17,4 @@ jobs:
1317
actions: read # Required to upload SARIF file to CodeQL
1418
security-events: write # Require writing security events to upload
1519
contents: read # for checkout
16-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@e92b5d07338d4f0ba0981dffed17c48976ca4730" # v2.2.3
20+
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@375a0e8ebdc98e99b02ac4338a724f5750f21213" # v2.3.1

0 commit comments

Comments
 (0)