dl: add go1.17.7 and go1.16.14

Change-Id: I066dbc7089ef3b85e39b4daf4a37289ab6abe10d
Reviewed-on: https://go-review.googlesource.com/c/dl/+/384954
Trust: Cherry Mui <cherryyz@google.com>
Run-TryBot: Cherry Mui <cherryyz@google.com>
Trust: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
diff --git a/go1.16.14/main.go b/go1.16.14/main.go
new file mode 100644
index 0000000..0c69a53
--- /dev/null
+++ b/go1.16.14/main.go
@@ -0,0 +1,24 @@
+// Copyright 2022 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// The go1.16.14 command runs the go command from Go 1.16.14.
+//
+// To install, run:
+//
+//     $ go install golang.org/dl/go1.16.14@latest
+//     $ go1.16.14 download
+//
+// And then use the go1.16.14 command as if it were your normal go
+// command.
+//
+// See the release notes at https://go.dev/doc/devel/release#go1.16.minor.
+//
+// File bugs at https://go.dev/issue/new.
+package main
+
+import "golang.org/dl/internal/version"
+
+func main() {
+	version.Run("go1.16.14")
+}
diff --git a/go1.17.7/main.go b/go1.17.7/main.go
new file mode 100644
index 0000000..17a1847
--- /dev/null
+++ b/go1.17.7/main.go
@@ -0,0 +1,24 @@
+// Copyright 2022 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// The go1.17.7 command runs the go command from Go 1.17.7.
+//
+// To install, run:
+//
+//     $ go install golang.org/dl/go1.17.7@latest
+//     $ go1.17.7 download
+//
+// And then use the go1.17.7 command as if it were your normal go
+// command.
+//
+// See the release notes at https://go.dev/doc/devel/release#go1.17.minor.
+//
+// File bugs at https://go.dev/issue/new.
+package main
+
+import "golang.org/dl/internal/version"
+
+func main() {
+	version.Run("go1.17.7")
+}