We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a756417 commit 7e7882aCopy full SHA for 7e7882a
1 file changed
.github/workflows/main.yml
@@ -31,8 +31,15 @@ jobs:
31
32
- name: Install mongodb-database-tools
33
run: |
34
- sudo apt update
35
- sudo apt install -y mongodb-database-tools
+ sudo apt-get update
+ sudo apt-get install -y wget gnupg
36
+
37
+ wget -qO - https://www.mongodb.org/static/pgp/server-8.0.asc | sudo gpg --dearmor -o /usr/share/keyrings/mongodb-server-8.0.gpg
38
39
+ echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
40
41
42
+ sudo apt-get install -y mongodb-database-tools
43
44
- name: Validate composer.json and composer.lock
45
run: composer validate
0 commit comments