all: change references to GCS bucket to vuln.go.dev

Now that https://vuln.go.dev is live, references to
https://storage.googleapis.com/go-vulndb are changed to
https://vuln.go.dev.

Change-Id: I6c0a75f226786a6052fa4f6803bf3c4f29e37153
Reviewed-on: https://go-review.googlesource.com/c/vuln/+/398115
Trust: Julie Qiu <julie@golang.org>
Run-TryBot: Julie Qiu <julie@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
diff --git a/README.md b/README.md
index 2ae14e8..ff8286f 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,5 @@
 Unless otherwise noted, the Go source files are distributed under
 the BSD-style license found in the LICENSE file.
 
-Database entries available at https://storage.googleapis.com/go-vulndb/ are
-distributed under the terms of the
-[CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.
+Database entries available at https://vuln.go.dev are distributed under the
+terms of the [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.
diff --git a/cmd/govulncheck/main.go b/cmd/govulncheck/main.go
index c1d8a71..82c86b0 100644
--- a/cmd/govulncheck/main.go
+++ b/cmd/govulncheck/main.go
@@ -82,7 +82,7 @@
 		die("%s", usage)
 	}
 
-	dbs := []string{"https://storage.googleapis.com/go-vulndb"}
+	dbs := []string{"https://vuln.go.dev"}
 	if GOVULNDB := os.Getenv("GOVULNDB"); GOVULNDB != "" {
 		dbs = strings.Split(GOVULNDB, ",")
 	}
diff --git a/doc/vulndb.md b/doc/vulndb.md
index ff3d976..c885b0a 100644
--- a/doc/vulndb.md
+++ b/doc/vulndb.md
@@ -3,7 +3,7 @@
 ## Accessing the database
 
 The Go vulnerability database is rooted at
-`https://storage.googleapis.com/go-vulndb` and provides data as JSON. We
+`https://vuln.go.dev` and provides data as JSON. We
 recommend using
 [client.Client](https://pkg.go.dev/golang.org/x/vuln/client#Client) to read
 data from the Go vulnerability database.
@@ -14,14 +14,14 @@
 
 The endpoints the table below are supported. For each path:
 
-- $base is the path portion of a Go vulnerability database URL (`https://storage.googleapis.com/go-vulndb`).
+- $base is the path portion of a Go vulnerability database URL (`https://vuln.go.dev`).
 - $module is a module path
 - $vuln is a Go vulnerabilitiy ID (for example, `GO-2021-1234`)
 
 | Path                | Description                                                                                                                               |
 | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
-| $base/index.json    | List of module paths in the database mapped to its last modified timestamp ([link](https://storage.googleapis.com/go-vulndb/index.json)). |
-| $base/$module.json  | List of vulnerability entries for that module ([example](https://storage.googleapis.com/go-vulndb/golang.org/x/crypto.json)).             |
+| $base/index.json    | List of module paths in the database mapped to its last modified timestamp ([link](https://vuln.go.dev/index.json)). |
+| $base/$module.json  | List of vulnerability entries for that module ([example](https://vuln.go.dev/golang.org/x/crypto.json)).             |
 | $base/ID/index.json | List of all the vulnerability entries in the database                                                                                     |
 | $base/ID/$vuln.json | An individual Go vulnerability report                                                                                                     |