[cipd] Bump cipd to latest

Updates the pinned CIPD client version to get a series of three changes
that allow configuration of the number of threads used in extracting
packages. This can be configured via the `CIPD_MAX_THREADS` environment
variable, which defaults to 1. If set to 0, it uses `runtime.NumCPU()`
threads.

Bug: 34816
Change-Id: I0996fcb22fd1246ccaba8bafdb32df5bd5b8249f
diff --git a/cipd/cipd.go b/cipd/cipd.go
index 525e088..1b338f2 100644
--- a/cipd/cipd.go
+++ b/cipd/cipd.go
@@ -32,29 +32,29 @@
 
 const (
 	cipdBackend       = "https://chrome-infra-packages.appspot.com"
-	cipdVersion       = "git_revision:65757c8bf7801ec7b3fd3dfae64867fd7f2fc985"
+	cipdVersion       = "git_revision:9c0e59fda0464ba15824ffa82a1095dcccef19ea"
 	cipdVersionDigest = `
 # This file was generated by
 #
 #  cipd selfupdate-roll -version-file .cipd_version \
-#      -version git_revision:65757c8bf7801ec7b3fd3dfae64867fd7f2fc985
+#      -version git_revision:9c0e59fda0464ba15824ffa82a1095dcccef19ea
 #
 # Do not modify manually. All changes will be overwritten.
 # Use 'cipd selfupdate-roll ...' to modify.
 
-linux-386       sha256  a88c555d3b4cf7164a89128cdf0ac4cf31afc8ec849e0e873a9028da907d3a03
-linux-amd64     sha256  515e644bca27ee80d67b72418c8660c970c1ea86d8506e11adb5c354e1dd665b
-linux-arm64     sha256  c7a28686c79d2ff4d7a3084979a45b7c0f7ec99e12eb7e711f64062a91a1b58b
-linux-armv6l    sha256  80a7b6b96b1e592c0d4b1995975706590ca673eb931be4dd9e66fd7e4266ce59
-linux-mips64    sha256  fb9fb74ae3a55054d5eb2b15ecd845eb68003472c2c5b648ac62526f8c140a46
-linux-mips64le  sha256  25fa30aaa79530d3035360007e7b6a616728a43b4d8b37d25f94ab56b386c30e
-linux-mipsle    sha256  588998c02b3a79b28efc43cae13aec99693a3d44869a451b5736678b5f0220dd
-linux-ppc64     sha256  d6bee284b388ee241a531a8999f990cbc9e3133bfbc9525974ed075fe10ca39e
-linux-ppc64le   sha256  619c2cb21db81604a42f06c613fe16503c4edaf8cd607d628bc1e2aa3b09b196
-linux-s390x     sha256  c0b09d70c29d93c522e8004a1e536fac0ff37e468e7058434caede58a5283a74
-mac-amd64       sha256  806deca9b9c3ea88011b637cd4579208cfddb96ccfb47576966ba75bf2dcab17
-windows-386     sha256  2a12630b1e4f2f4890fc8c0adf9127ed93585905e9328ff4b6a959da458a0d63
-windows-amd64   sha256  9478950d88c3c248ae5e9f1c98c52c10fe2a5e2021f8dfaaaed281e703af71e8
+linux-386       sha256  8a2ef5b3169f01f92537feb5217d45799d55ff6380fd39378139edce5ee5ee2f
+linux-amd64     sha256  7b78ed0cb5842cb03462f9446db54074a2b8137a88ab1b94e204f589d2f6b123
+linux-arm64     sha256  bd5068a692ec1a56c46e42fe1273069cbe0e36c207d9c258da835fe91dbbf3e6
+linux-armv6l    sha256  8b7f1087d0309d3cbbeef266176f55feb6f7ff8857ca867353b80a3f60d92123
+linux-mips64    sha256  4a2a45517b0ce161b65a8f411eb9144d5c5f4370f8490c03b4cdf063e05011cf
+linux-mips64le  sha256  c4db0affbd2e0099de43619f348abc58d440731d952d93a9f5c7f4fb64cb6db5
+linux-mipsle    sha256  75da3575ffc5358a7eee35d07db5f616162cf16f67bad7ffca5ed39d175c2f1c
+linux-ppc64     sha256  64d532f4f6a6d0954f9da21843d9a31fcf6432b748059a5221743eed9dbedea9
+linux-ppc64le   sha256  23c3530b83b13298c08a2706d9fbe1bbf45eb30fd1405783f891f6417d990d63
+linux-s390x     sha256  edbdb85ac9e4a8e64286239e1555fe82b9aee120f6a0bcc6b0d341ddcfeab759
+mac-amd64       sha256  e6faaa614205f223887b3d48fb4d151e9b2f79d81649625433220c14d77dbe52
+windows-386     sha256  cbc17abd503919c3676664813c7922df09a9c33dff9e27aa13dec5c084a1314a
+windows-amd64   sha256  1d96c2ee8183fde8ae786d1215d0ecaff437a35c818d8b8979eae0491d8f6d5c
 `
 	cipdNotLoggedInStr = "Not logged in"
 )
@@ -387,7 +387,7 @@
 	return true, nil
 }
 
-// Ensure runs cipd binary's ensure funcationality over file. Fetched packages will be
+// Ensure runs cipd binary's ensure functionality over file. Fetched packages will be
 // saved to projectRoot directory. Parameter timeout is in minutes.
 func Ensure(jirix *jiri.X, file, projectRoot string, timeout uint) error {
 	cipdPath, err := Bootstrap(jirix.CIPDPath())
@@ -919,4 +919,4 @@
 		Platform{"linux", "amd64"},
 		Platform{"mac", "amd64"},
 	}
-}
\ No newline at end of file
+}