From 0e91a408362720a3ec603ed3e6b2e13b5abce800 Mon Sep 17 00:00:00 2001 From: Dmitry Rybakov <160598371+comandeo-mongo@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:45:44 +0100 Subject: [PATCH] Use https for submodules (#2913) --- .gitmodules | 2 +- profile/driver_bench/rake/tasks.rake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 6d428f359d..366d171c3a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,4 +3,4 @@ url = https://github.com/mongodb-labs/drivers-evergreen-tools [submodule "spec/shared"] path = spec/shared - url = git@github.com:mongodb-labs/mongo-ruby-spec-shared.git + url = https://github.com/mongodb-labs/mongo-ruby-spec-shared diff --git a/profile/driver_bench/rake/tasks.rake b/profile/driver_bench/rake/tasks.rake index dbf480c6b5..07e8dea489 100644 --- a/profile/driver_bench/rake/tasks.rake +++ b/profile/driver_bench/rake/tasks.rake @@ -4,7 +4,7 @@ $LOAD_PATH.unshift File.expand_path('../../../lib', __dir__) task driver_bench: %i[ driver_bench:data driver_bench:run ] -SPECS_REPO_URI = 'git@github.com:mongodb/specifications.git' +SPECS_REPO_URI = 'https://github.com/mongodb/specifications' SPECS_PATH = File.expand_path('../../../specifications', __dir__) DRIVER_BENCH_DATA = File.expand_path('../../data/driver_bench', __dir__)