Skip to content

Commit

Permalink
fix(security): patch ws dependency vulnerabilities (#1118)
Browse files Browse the repository at this point in the history
* fix(security): patch ws dependency vulnerabilities

* chore(ci): attempt to fix the CI
  • Loading branch information
arnaudbesnier authored Jun 20, 2024
1 parent 3936ac3 commit 9188e34
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
postgres :
image : postgres:9.4.5
container_name : forest_express_sequelize_postgres
ports :
- "5437:5432"
postgres:
image: postgres:12.19
container_name: forest_express_sequelize_postgres
ports:
- '5437:5432'
environment:
- POSTGRES_DB=forest-express-sequelize-test
- POSTGRES_USER=forest
Expand All @@ -16,8 +16,8 @@ mysql_min:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8998:3306"
ports:
- '8998:3306'

mysql_max:
image: mysql:8.0
Expand All @@ -27,8 +27,8 @@ mysql_max:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8999:3306"
ports:
- '8999:3306'

maria_db:
image: mariadb:10
Expand All @@ -38,5 +38,5 @@ maria_db:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "9000:3306"
ports:
- '9000:3306'
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11517,9 +11517,9 @@ [email protected]:
mkdirp "^0.5.1"

ws@^7.4.6:
version "7.5.9"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
version "7.5.10"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9"
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==

xml-name-validator@^3.0.0:
version "3.0.0"
Expand Down

0 comments on commit 9188e34

Please sign in to comment.