diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 8638fee..ed1e1f0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -34,7 +34,7 @@ jobs: services: mongodb: - image: mongo:7.0.5 + image: mongo:7.0.8 env: MONGO_INITDB_DATABASE: greenhouse MONGO_INITDB_ROOT_USERNAME: farmer diff --git a/tests/test_routers.py b/tests/test_routers.py index 02e0c60..674d6f2 100644 --- a/tests/test_routers.py +++ b/tests/test_routers.py @@ -7,4 +7,4 @@ async def test_health_check(client: AsyncClient): response = await client.get("/health-check") assert response.status_code == status.HTTP_200_OK - assert response.json()["version"] == "7.0.5" + assert response.json()["version"] == "7.0.8"