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

fix(security): patch micromatch dependency vulnerabilities #1120

Merged
merged 4 commits into from
Sep 5, 2024
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Login on dockerhub
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Start docker container
run: docker-compose up -d; sleep 20
run: docker compose up -d; sleep 20
- name: Send coverage
uses: paambaati/[email protected]
env:
Expand Down
80 changes: 41 additions & 39 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,44 @@
postgres:
image: postgres:12.19
container_name: forest_express_sequelize_postgres
ports:
- '5437:5432'
environment:
- POSTGRES_DB=forest-express-sequelize-test
- POSTGRES_USER=forest
- POSTGRES_PASSWORD=secret
version: '2'
services:
postgres:
image: postgres:12.19
container_name: forest_express_sequelize_postgres
ports:
- '5437:5432'
environment:
- POSTGRES_DB=forest-express-sequelize-test
- POSTGRES_USER=forest
- POSTGRES_PASSWORD=secret

mysql_min:
image: mysql:5.6
container_name: forest_express_sequelize_mysql_min
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '8998:3306'
mysql_min:
image: mysql:5.6
container_name: forest_express_sequelize_mysql_min
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '8998:3306'

mysql_max:
image: mysql:8.0
container_name: forest_express_sequelize_mysql_max
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '8999:3306'
mysql_max:
image: mysql:8.0
container_name: forest_express_sequelize_mysql_max
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '8999:3306'

maria_db:
image: mariadb:10
container_name: forest_express_sequelize_mariadb
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '9000:3306'
maria_db:
image: mariadb:10
container_name: forest_express_sequelize_mariadb
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- '9000:3306'
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3481,7 +3481,7 @@ brace-expansion@^2.0.1:
dependencies:
balanced-match "^1.0.0"

braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
braces@^3.0.1, braces@^3.0.3, braces@~3.0.2:
version "3.0.3"
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
Expand Down Expand Up @@ -7609,11 +7609,11 @@ [email protected]:
picomatch "^2.0.5"

micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4:
version "4.0.5"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
version "4.0.8"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
dependencies:
braces "^3.0.2"
braces "^3.0.3"
picomatch "^2.3.1"

[email protected]:
Expand Down
Loading