supercharge / mongodb-github-action

Use MongoDB in GitHub Actions
MIT License
222 stars 46 forks source link

MongoDB 4.4 support #17

Closed gimperiale closed 3 years ago

gimperiale commented 3 years ago

MongoDB 4.4 was released on July 2020. Could we add support here?

marcuspoehls commented 3 years ago

@gimperiale Hey, MongoDB 4.4 is already supported. This GitHub Action uses the specified MongoDB version and searches for an available Docker container in the Docker hub.

This should already work for you without any changes in this package:

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        mongodb-version: [4.0, 4.2, 4.4]

Can you try it?

gimperiale commented 3 years ago

Confirmed it works