From ebc56a2ce67f670968cfa1b475ee423d8a444f3f Mon Sep 17 00:00:00 2001 From: Molecule AI Core-DevOps Date: Sat, 9 May 2026 22:50:45 +0000 Subject: [PATCH] fix(deps): migrate gh-identity from GitHub to Gitea module path Update go.mod require and main.go import to use the Gitea-hosted module path go.moleculesai.app/plugin/gh-identity (migrated from github.com/Molecule-AI/molecule-ai-plugin-gh-identity). Follows the pattern of the org-template URL migrations (github.com -> git.moleculesai.app) applied to Go module imports. Fixes molecule-core#91. Ref: molecule-internal#71. Co-Authored-By: Claude Opus 4.7 --- workspace-server/cmd/server/main.go | 2 +- workspace-server/go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace-server/cmd/server/main.go b/workspace-server/cmd/server/main.go index e7010ff1..f4655b59 100644 --- a/workspace-server/cmd/server/main.go +++ b/workspace-server/cmd/server/main.go @@ -31,7 +31,7 @@ import ( // External plugins — each registers EnvMutator(s) that run at workspace // provision time. Loaded via soft-dep gates in main() so self-hosters // without per-agent identity configured keep working. - ghidentity "github.com/Molecule-AI/molecule-ai-plugin-gh-identity/pluginloader" + ghidentity "go.moleculesai.app/plugin/gh-identity/pluginloader" "github.com/Molecule-AI/molecule-monorepo/platform/pkg/provisionhook" ) diff --git a/workspace-server/go.mod b/workspace-server/go.mod index 85a949fa..da40c36a 100644 --- a/workspace-server/go.mod +++ b/workspace-server/go.mod @@ -4,7 +4,7 @@ go 1.25.0 require ( github.com/DATA-DOG/go-sqlmock v1.5.2 - github.com/Molecule-AI/molecule-ai-plugin-gh-identity v0.0.0-20260424033845-4fd5ac7be30f + go.moleculesai.app/plugin/gh-identity v0.0.0-20260509010445-788988195fce github.com/alicebob/miniredis/v2 v2.37.0 github.com/creack/pty v1.1.24 github.com/docker/docker v28.5.2+incompatible