From d65addffa03fb3779f2aa28e0fdce772bf2bee15 Mon Sep 17 00:00:00 2001 From: Zanie Date: Thu, 14 Sep 2023 11:34:12 -0500 Subject: [PATCH] Use https instead of ssh for schemastore authentication --- scripts/update_schemastore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update_schemastore.py b/scripts/update_schemastore.py index b060db31c0..4fb60513d5 100644 --- a/scripts/update_schemastore.py +++ b/scripts/update_schemastore.py @@ -11,8 +11,8 @@ from pathlib import Path from subprocess import check_call, check_output from tempfile import TemporaryDirectory -schemastore_fork = "git@github.com:astral-sh/schemastore.git" -schemastore_upstream = "git@github.com:SchemaStore/schemastore.git" +schemastore_fork = "https://github.com/astral-sh/schemastore.git" +schemastore_upstream = "https://github.com/SchemaStore/schemastore.git" ruff_repo = "https://github.com/astral-sh/ruff" root = Path( check_output(["git", "rev-parse", "--show-toplevel"], text=True).strip(),