From 7350d5867e871f6258475726537f826503031543 Mon Sep 17 00:00:00 2001 From: Adam Patch Date: Tue, 13 Jan 2026 13:33:53 -0500 Subject: [PATCH] fix: change dev submodule URL from SSH to HTTPS for CI compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions doesn't have SSH keys by default, so the submodule clone was failing. HTTPS works with the GITHUB_TOKEN automatically. Fixes sync-dev-submodule-on-main job failure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 2971298..5d879d2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "dev"] path = dev - url = git@github.com:patchmemory/scidk-dev.git + url = https://github.com/patchmemory/scidk-dev.git branch = main