Skip to content

Commit 6557cf4

Browse files
committed
Print Github hint on STDERR instead of STDOUT
1 parent 46366c4 commit 6557cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/local_check_security.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ a specific "composer.lock" file.`,
7575
if os.Getenv("GITHUB_WORKSPACE") != "" {
7676
// Ran inside a Github action, export vulns
7777
output, _ := security.Format(vulns, "raw_json")
78-
terminal.Printf("::set-output name=vulns::%s", output)
78+
terminal.Eprintf("::set-output name=vulns::%s", output)
7979
}
8080

8181
if vulns.Count() > 0 {

0 commit comments

Comments
 (0)