From f69d21735ba7c788afa3f7f7a0e34f7712219d01 Mon Sep 17 00:00:00 2001 From: Muhideen Mujeeb Adeoye <41507005+Mujhtech@users.noreply.github.com> Date: Wed, 22 Apr 2026 11:46:11 +0100 Subject: [PATCH] Fix command syntax for backend vulnerability scan --- dagryn.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dagryn.toml b/dagryn.toml index ed719a2..3f04b7a 100644 --- a/dagryn.toml +++ b/dagryn.toml @@ -77,7 +77,7 @@ timeout = "10m" [tasks.backend-vulnerability-scan] -command = "govulncheck -C ./... -json > gosec-report.json" +command = "govulncheck ./... -json > gosec-report.json" uses = ["setup-go", "golang-vul"] needs = ["backend-install", "backend-build"] inputs = ["**/*.go", "go.mod", "go.sum"]