Skip to content

Commit 118c116

Browse files
KKingZeroclaude
andcommitted
Track go.sum so CI dependency audit can resolve modules
go.sum was gitignored (mislabeled as "test cache"), so every CI checkout ran without a lockfile. The weekly Security Scan's Dependency Security Audit step failed for 5+ consecutive weeks trying to build the module graph with missing go.sum entries. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 7da50dd commit 118c116

3 files changed

Lines changed: 366 additions & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ coverage.html
2121
# Go workspace file
2222
go.work
2323

24-
# Test cache
25-
go.sum
26-
2724
# IDE
2825
.vscode/
2926
.idea/

zypheron-go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ require (
1212
github.com/charmbracelet/lipgloss v1.1.0
1313
github.com/chromedp/chromedp v0.14.2
1414
github.com/fatih/color v1.16.0
15+
github.com/gofrs/flock v0.13.0
1516
github.com/google/uuid v1.6.0
1617
github.com/jung-kurt/gofpdf/v2 v2.17.3
1718
github.com/mattn/go-sqlite3 v1.14.32
@@ -50,7 +51,6 @@ require (
5051
github.com/gobwas/pool v0.2.1 // indirect
5152
github.com/gobwas/ws v1.4.0 // indirect
5253
github.com/godbus/dbus/v5 v5.1.0 // indirect
53-
github.com/gofrs/flock v0.13.0 // indirect
5454
github.com/hashicorp/hcl v1.0.0 // indirect
5555
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5656
github.com/josharian/intern v1.0.0 // indirect

0 commit comments

Comments
 (0)