From 471515f53f61feb3443e6d2458d472973d2b37f9 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Fri, 5 Apr 2024 12:56:20 +0200 Subject: [PATCH] bump mongo to 7.0.8 --- .github/workflows/build-and-test.yml | 2 +- tests/test_routers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"