From 24660a0660145c7cb67bdedbcddfa92d3a4b18da Mon Sep 17 00:00:00 2001 From: Brent Hoover Date: Tue, 14 Mar 2023 05:25:03 +0000 Subject: [PATCH] fix: run tests against mongo 5 Signed-off-by: Brent Hoover Signed-off-by: Brent Hoover --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0964e9c7cae..9dc9a6be0db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -98,7 +98,7 @@ jobs: docker: - image: cimg/node:14.20.0 # Integration tests need MongoDB server running and accessible on port 27017 - - image: mongo:4.0 + - image: mongo:5 command: mongod --oplogSize 128 --replSet rs0 --storageEngine=wiredTiger ports: - "27017:27017" @@ -125,7 +125,7 @@ jobs: docker: - image: cimg/node:14.20.0 # Integration tests need MongoDB server running and accessible on port 27017 - - image: mongo:4.0 + - image: mongo:5 command: mongod --oplogSize 128 --replSet rs0 --storageEngine=wiredTiger ports: - "27017:27017"