Skip to content

Commit 5a47133

Browse files
author
copyleftdev
committed
fix: correct gosec package path for CI tools
- Changed from github.com/securecodewarrior/gosec to github.com/securego/gosec - The securecodewarrior organization doesn't exist, causing CI failures - Verified the correct path works locally with Go 1.25 - This should resolve the Code Quality job failures in CI/CD
1 parent 4563152 commit 5a47133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tools: ## Install development tools
110110
@echo "$(CYAN)Installing development tools...$(NC)"
111111
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
112112
@go install golang.org/x/tools/cmd/goimports@latest
113-
@go install github.com/securecodewarrior/gosec/cmd/gosec@latest
113+
@go install github.com/securego/gosec/v2/cmd/gosec@latest
114114
@go install github.com/goreleaser/goreleaser@latest
115115
@echo "$(GREEN)Development tools installed!$(NC)"
116116

0 commit comments

Comments
 (0)