Julie Qiu submitted this change.
_content/security/vuln: add getting started info
Change-Id: I5b32ebdbb8464af3c5eac5639ae43c7d5c2853c5
Reviewed-on: https://go-review.googlesource.com/c/website/+/427875
Reviewed-by: Brandon Kessler <bkes...@google.com>
Reviewed-by: Tatiana Bradley <tat...@golang.org>
---
M _content/security/vuln/index.md
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/_content/security/vuln/index.md b/_content/security/vuln/index.md
index 1ad44df..c577fcb 100644
--- a/_content/security/vuln/index.md
+++ b/_content/security/vuln/index.md
@@ -75,9 +75,16 @@
vulnerabilities that may affect their projects.
Vulnerability checking is integrated into Go's tools and services, including
a new command line tool, [govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck),
-the [Go package discovery site](https://pkg.go.dev), and soon
+the [Go package discovery site](https://pkg.go.dev), and soon,
[VS Code Go](https://github.com/golang/vscode-go/blob/master/docs/commands.md#go-run-vulncheck-experimental).
+To start using govulncheck, run the following from your project:
+
+```
+$ go install golang.org/x/vuln/cmd/govulncheck@latest
+$ govulncheck ./…
+```
+
## Feedback
We would love to hear your feedback for govulncheck:
To view, visit change 427875. To unsubscribe, or for help writing mail filters, visit settings.