Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cicd-3-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: |
gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
path: artifact.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: SARIF file
path: results.sarif
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stage-2-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ jobs:
run: |
make test-unit
- name: "Save the result of fast test suite"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: unit-tests
path: "**/.reports/unit"
include-hidden-files: true
if: always()
- name: "Save the result of code coverage"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: code-coverage-report
path: ".reports/lcov.info"
Expand Down
2 changes: 1 addition & 1 deletion internal/datastore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.27.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.1.3",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"testcontainers": "^11.4.0",
"ts-jest": "^29.4.0",
Expand Down
4 changes: 2 additions & 2 deletions lambdas/api-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"dependencies": {
"@internal/datastore": "*",
"@internal/helpers": "*",
"esbuild": "^0.24.0",
"esbuild": "^0.25.11",
"pino": "^9.7.0"
},
"devDependencies": {
"@aws-sdk/s3-request-presigner": "^3.901.0",
"@tsconfig/node22": "^22.0.2",
"@types/aws-lambda": "^8.10.148",
"@types/jest": "^29.5.14",
"jest": "^30.1.3",
"jest": "^30.2.0",
"jest-mock-extended": "^3.0.7",
"typescript": "^5.8.3",
"zod": "^4.1.11"
Expand Down
4 changes: 2 additions & 2 deletions lambdas/authorizer/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"dependencies": {
"esbuild": "^0.24.0"
"esbuild": "^0.25.11"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/aws-lambda": "^8.10.148",
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"typescript": "^5.8.3"
},
Expand Down
Loading
Loading