Skip to content

Commit

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

* chore(test): fix tests

* chore(test): fix tests

* chore(test): fix tests
  • Loading branch information
arnaudbesnier authored Sep 5, 2024
1 parent 5cd48f0 commit 331e712
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,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
run: docker compose up -d
- name: Send coverage
uses: paambaati/codeclimate-action@v2.7.4
env:
Expand Down
14 changes: 8 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
MongoDB:
image: mongo
ports:
- "27017:27017"
volumes:
- ./data/mongodb:/var/lib/mongodb
version: '2'
services:
mongo:
image: mongo
ports:
- '27017:27017'
volumes:
- ./data/mongodb:/var/lib/mongodb
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3235,7 +3235,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 @@ -6999,11 +6999,11 @@ micromatch@4.0.2:
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"

mime-db@1.52.0:
Expand Down

0 comments on commit 331e712

Please sign in to comment.