Skip to content

Commit 93ce817

Browse files
Combined Dependabot PRs (#215)
* Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump tsx from 4.20.4 to 4.20.6 Bumps [tsx](https://github.com/privatenumber/tsx) from 4.20.4 to 4.20.6. - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](privatenumber/tsx@v4.20.4...v4.20.6) --- updated-dependencies: - dependency-name: tsx dependency-version: 4.20.6 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump jest and @types/jest Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest). These dependencies needed to be updated together. Updates `jest` from 29.7.0 to 30.2.0 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.2.0/packages/jest) Updates `@types/jest` from 29.5.14 to 30.0.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) --- updated-dependencies: - dependency-name: jest dependency-version: 30.2.0 dependency-type: direct:development update-type: version-update:semver-major - dependency-name: "@types/jest" dependency-version: 30.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump esbuild from 0.24.2 to 0.25.11 Bumps [esbuild](https://github.com/evanw/esbuild) from 0.24.2 to 0.25.11. - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](evanw/esbuild@v0.24.2...v0.25.11) --- updated-dependencies: - dependency-name: esbuild dependency-version: 0.25.11 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e08e48d commit 93ce817

File tree

9 files changed

+493
-108
lines changed

9 files changed

+493
-108
lines changed

.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)