Skip to content

Commit 153c9b2

Browse files
authored
Merge branch 'main' into feature/CCM-11600-API-GW-Authorizer
2 parents 59082b9 + 93ce817 commit 153c9b2

9 files changed

Lines changed: 493 additions & 108 deletions

File tree

.github/workflows/cicd-3-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar
105105
106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v5
107107
with:
108108
name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
109109
path: artifact.tar

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
with:
6464
name: SARIF file
6565
path: results.sarif

.github/workflows/stage-2-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ jobs:
7272
run: |
7373
make test-unit
7474
- name: "Save the result of fast test suite"
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: unit-tests
7878
path: "**/.reports/unit"
7979
include-hidden-files: true
8080
if: always()
8181
- name: "Save the result of code coverage"
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: code-coverage-report
8585
path: ".reports/lcov.info"

internal/datastore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@typescript-eslint/parser": "^8.27.0",
1515
"eslint": "^9.27.0",
1616
"eslint-plugin-jest": "^29.0.1",
17-
"jest": "^30.1.3",
17+
"jest": "^30.2.0",
1818
"jest-mock-extended": "^4.0.0",
1919
"testcontainers": "^11.4.0",
2020
"ts-jest": "^29.4.0",

lambdas/api-handler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"dependencies": {
33
"@internal/datastore": "*",
44
"@internal/helpers": "*",
5-
"esbuild": "^0.24.0",
5+
"esbuild": "^0.25.11",
66
"pino": "^9.7.0"
77
},
88
"devDependencies": {
99
"@aws-sdk/s3-request-presigner": "^3.901.0",
1010
"@tsconfig/node22": "^22.0.2",
1111
"@types/aws-lambda": "^8.10.148",
1212
"@types/jest": "^29.5.14",
13-
"jest": "^30.1.3",
13+
"jest": "^30.2.0",
1414
"jest-mock-extended": "^3.0.7",
1515
"typescript": "^5.8.3",
1616
"zod": "^4.1.11"

lambdas/authorizer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"dependencies": {
3-
"esbuild": "^0.24.0"
3+
"esbuild": "^0.25.11"
44
},
55
"devDependencies": {
66
"@tsconfig/node22": "^22.0.2",
77
"@types/aws-lambda": "^8.10.148",
88
"@types/jest": "^30.0.0",
9-
"jest": "^30.1.3",
9+
"jest": "^30.2.0",
1010
"jest-mock-extended": "^4.0.0",
1111
"typescript": "^5.8.3"
1212
},

0 commit comments

Comments
 (0)