The missing action for MongoDB 🎉
- Faster (with the default version) and simpler than containers
- Works on Linux, Mac, and Windows
- Supports different versions
Add it as a step to your workflow
- uses: ankane/setup-mongodb@v1
Specify a version
- uses: ankane/setup-mongodb@v1
with:
mongodb-version: 8.0
Currently supports
Version | 8.0 |
7.0 |
6.0 |
5.0 |
---|---|---|---|---|
ubuntu-24.04 |
default | |||
ubuntu-22.04 |
default | ✓ | ✓ | |
ubuntu-20.04 |
default | ✓ | ✓ | ✓ |
macos-15 |
default | ✓ | ✓ | ✓ |
macos-14 |
default | ✓ | ✓ | ✓ |
macos-13 |
default | ✓ | ✓ | ✓ |
windows-2022 |
default | |||
windows-2019 |
default |
Test against multiple versions
strategy:
matrix:
mongodb-version: [8.0, 7.0, 6.0, 5.0]
steps:
- uses: ankane/setup-mongodb@v1
with:
mongodb-version: ${{ matrix.mongodb-version }}
Run queries
- run: mongosh --eval "db.version()"
Use mongo
for MongoDB < 6
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features