Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: "1.26.4"
GO_VERSION: "1.26.5"
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
Expand Down
4 changes: 2 additions & 2 deletions cli/agent/claudecode/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const (
ToolEdit = "Edit"
ToolNotebookEdit = "NotebookEdit"
// #nosec G101 -- not a credential: this is an MCP tool name constant
ToolMCPWrite = "mcp__acp__Write" //nolint:gosec // G101: This is a tool name, not a credential
ToolMCPEdit = "mcp__acp__Edit"
ToolMCPWrite = "mcp__acp__Write" //nolint:gosec // G101: This is a tool name, not a credential
ToolMCPEdit = "mcp__acp__Edit"
)

// FileModificationTools lists tools that create or modify files
Expand Down
2 changes: 1 addition & 1 deletion cli/checkpoint/shadow_ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func shadowRefBackoff(ctx context.Context, attempt int) error {
// Add a 1ms floor so the chosen sleep is always non-trivial, even when
// rand.Int64N happens to return 0.
// #nosec G404 -- non-cryptographic use (retry backoff jitter)
d := time.Duration(rand.Int64N(int64(base))) + time.Millisecond //nolint:gosec // jitter, not security-sensitive
d := time.Duration(rand.Int64N(int64(base))) + time.Millisecond //nolint:gosec // jitter, not security-sensitive
select {
case <-time.After(d):
return nil
Expand Down
Loading