dl: add go1.20.14

Change-Id: I1be5fdfc39d61051d6b84478ea2c0001a4b5e88b
Reviewed-on: https://go-review.googlesource.com/c/dl/+/562115
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Gopher Robot <gobot@golang.org>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/go1.20.14/main.go b/go1.20.14/main.go
new file mode 100644
index 0000000..251732c
--- /dev/null
+++ b/go1.20.14/main.go
@@ -0,0 +1,24 @@
+// Copyright 2024 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.20.14 command runs the go command from Go 1.20.14.
+//
+// To install, run:
+//
+//	$ go install golang.org/dl/go1.20.14@latest
+//	$ go1.20.14 download
+//
+// And then use the go1.20.14 command as if it were your normal go
+// command.
+//
+// See the release notes at https://go.dev/doc/devel/release#go1.20.14.
+//
+// File bugs at https://go.dev/issue/new.
+package main
+
+import "golang.org/dl/internal/version"
+
+func main() {
+	version.Run("go1.20.14")
+}