Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix vulnerabilities #3087

Merged
merged 4 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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/node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
- name: Scan docker image
run: |
docker images
/tmp/trivy image --ignore-unfixed --format table --vuln-type os,library --exit-code 1 --severity HIGH --input /tmp/${{ github.sha }}-${{ matrix.package }}-${{ matrix.platform.name }}-${{ needs.version-generator.outputs.version }}.tar
/tmp/trivy image --db-repository ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db --java-db-repository ghcr.io/aquasecurity/trivy-java-db,public.ecr.aws/aquasecurity/trivy-java-db --ignore-unfixed --format table --vuln-type os,library --exit-code 1 --severity HIGH --input /tmp/${{ github.sha }}-${{ matrix.package }}-${{ matrix.platform.name }}-${{ needs.version-generator.outputs.version }}.tar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trivy scan kept failing because of

added fix from here until aquasecurity/trivy#7679 is merged

push:
name: Push to registry
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@
"undici@<=5.28.2": ">=5.28.3",
"tar@<6.2.1": ">=6.2.1",
"braces@<3.0.3": ">=3.0.3",
"@grpc/grpc-js@>=1.10.0 <1.10.9": ">=1.10.9"
"@grpc/grpc-js@>=1.10.0 <1.10.9": ">=1.10.9",
"dset@<3.1.4": ">=3.1.4"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[email protected] was present in a lot of packages, make sure we take 3.1.4 only

}
}
}
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@interledger/open-payments": "6.13.2",
"@interledger/openapi": "2.0.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
"@koa/router": "^12.0.2",
"ajv": "^8.12.0",
"axios": "^1.7.4",
"dotenv": "^16.4.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@interledger/pay": "0.4.0-alpha.9",
"@interledger/stream-receiver": "^0.3.3-alpha.3",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
"@koa/router": "^12.0.2",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.52.1",
Expand Down
12 changes: 6 additions & 6 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
"@headlessui/react": "^1.7.18",
"@ory/client": "^1.9.0",
"@ory/integrations": "^1.1.5",
"@remix-run/node": "^2.6.0",
"@remix-run/react": "^2.6.0",
"@remix-run/serve": "^2.6.0",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"graphql": "^16.8.1",
"ilp-packet": "3.1.4-alpha.2",
"isbot": "^5.1.2",
"json-canonicalize": "^1.0.6",
"pino": "^8.19.0",
"qs": "^6.11.2",
"json-canonicalize": "^1.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.1",
"yaml": "^2.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.6.0",
"@remix-run/eslint-config": "^2.6.0",
"@remix-run/dev": "^2.13.1",
"@remix-run/eslint-config": "^2.13.1",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^20.12.5",
"@types/qs": "^6.9.14",
Expand Down
Loading