Skip to content

Commit 6a93263

Browse files
authored
Merge pull request #5249 from alanpoulain/chore/merge-2.7
Merge 2.7
2 parents b52161f + 4f09801 commit 6a93263

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,15 @@ jobs:
397397
steps:
398398
- name: Checkout
399399
uses: actions/checkout@v3
400-
- name: Check
400+
- name: Setup MongoDB
401401
run: |
402-
sudo systemctl start mongod.service
402+
sudo apt update
403+
sudo apt install -y wget gnupg
404+
wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
405+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
406+
sudo apt update
407+
sudo apt install -y mongodb-org
408+
sudo systemctl start mongod
403409
- name: Setup PHP
404410
uses: shivammathur/setup-php@v2
405411
with:

0 commit comments

Comments
 (0)