From 904f1cf24e1e68d4902014fe1b36424e73112dac Mon Sep 17 00:00:00 2001 From: "Tung Bui (Leo)" <85242618+tungbq@users.noreply.github.com> Date: Wed, 21 Jun 2023 17:57:54 +0700 Subject: [PATCH] fix: Show the correct URL of the secret scanning (#4682) --- pkg/commands/artifact/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/artifact/run.go b/pkg/commands/artifact/run.go index 75ee85f883..ee14a6f784 100644 --- a/pkg/commands/artifact/run.go +++ b/pkg/commands/artifact/run.go @@ -594,7 +594,7 @@ func initScannerConfig(opts flag.Options, cacheClient cache.Cache) (ScannerConfi ver := canonicalVersion(opts.AppVersion) log.Logger.Info("Secret scanning is enabled") log.Logger.Info("If your scanning is slow, please try '--scanners vuln' to disable secret scanning") - log.Logger.Infof("Please see also https://aquasecurity.github.io/trivy/%s/docs/secret/scanning/#recommendation for faster secret detection", ver) + log.Logger.Infof("Please see also https://aquasecurity.github.io/trivy/%s/docs/scanner/secret/#recommendation for faster secret detection", ver) } else { opts.SecretConfigPath = "" }