From dbcfef1767a2e6e17a69193315d9e6a8885c96b3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 11:40:15 +0000 Subject: [PATCH 1/3] Initial plan From e6f153b4228448278fb720617dae03b0e0fc840c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 11:44:10 +0000 Subject: [PATCH 2/3] initial plan Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/data/action_pins.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/workflow/data/action_pins.json b/pkg/workflow/data/action_pins.json index 29175c8b149..8366ec146ee 100644 --- a/pkg/workflow/data/action_pins.json +++ b/pkg/workflow/data/action_pins.json @@ -155,10 +155,10 @@ "version": "v1.20.4", "sha": "dff508cca8ce57162e7aa6c4769a4f97c2fed638" }, - "github/codeql-action/upload-sarif@v3.32.3": { + "github/codeql-action/upload-sarif@v3.32.4": { "repo": "github/codeql-action/upload-sarif", - "version": "v3.32.3", - "sha": "17ec405481c24be464d4b2c5727a82f700ddb189" + "version": "v3.32.4", + "sha": "85b88275909735f5bc23196090e03d2eb148b3de" }, "github/stale-repos@v3.0.2": { "repo": "github/stale-repos", From de8c3a7b4501293d69e2d03eb13a9e77b5542076 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 11:49:57 +0000 Subject: [PATCH 3/3] fix: relax brittle description assertion in live MCP registry test (#37182) Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/mcp_registry_live_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cli/mcp_registry_live_test.go b/pkg/cli/mcp_registry_live_test.go index 0e726643f6e..38a7296bbd5 100644 --- a/pkg/cli/mcp_registry_live_test.go +++ b/pkg/cli/mcp_registry_live_test.go @@ -44,7 +44,7 @@ func TestMCPRegistryClient_LiveSearchServers(t *testing.T) { t.Errorf("First server has empty name") } if firstServer.Description == "" { - t.Errorf("First server has empty description") + t.Logf("Warning: First server '%s' has empty description (field may be optional)", firstServer.Name) } if firstServer.Transport == "" { t.Errorf("First server has empty transport") @@ -153,7 +153,7 @@ func TestMCPRegistryClient_LiveGetServer(t *testing.T) { t.Errorf("Expected server name '%s', got '%s'", serverName, server.Name) } if server.Description == "" { - t.Errorf("Server description is empty") + t.Logf("Warning: Server '%s' has empty description (field may be optional)", serverName) } if server.Transport == "" { t.Errorf("Server transport is empty")