dl: add go1.17.6 and go1.16.13

Change-Id: I29a1e2bbe027326d275928e43160ef71156b6dcc
Reviewed-on: https://go-review.googlesource.com/c/dl/+/375878
Trust: Carlos Amedee <carlos@golang.org>
Run-TryBot: Carlos Amedee <carlos@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Trust: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Than McIntosh <thanm@google.com>
diff --git a/go1.16.13/main.go b/go1.16.13/main.go
new file mode 100644
index 0000000..dd2d618
--- /dev/null
+++ b/go1.16.13/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.13 command runs the go command from Go 1.16.13.
+//
+// To install, run:
+//
+//     $ go install golang.org/dl/go1.16.13@latest
+//     $ go1.16.13 download
+//
+// And then use the go1.16.13 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.13")
+}
diff --git a/go1.17.6/main.go b/go1.17.6/main.go
new file mode 100644
index 0000000..ec5f49a
--- /dev/null
+++ b/go1.17.6/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.6 command runs the go command from Go 1.17.6.
+//
+// To install, run:
+//
+//     $ go install golang.org/dl/go1.17.6@latest
+//     $ go1.17.6 download
+//
+// And then use the go1.17.6 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.6")
+}