[cipd] Bump cipd to correct latest version

I used the wrong version tag when I updated the CIPD version in
I0dd71fd7f906dd364b675a815252fb134d62229b - the version I used didn't
include my CIPD change https://crrev.com/c/1902049.

I added a comment so that other people don't make the same mistake.

Bug: 39097
Change-Id: Ic1a6e4916fdfed2e04c8f31e427e2bdb97e641b2
diff --git a/cipd/cipd.go b/cipd/cipd.go
index ad758e9..2b17f57 100644
--- a/cipd/cipd.go
+++ b/cipd/cipd.go
@@ -32,30 +32,32 @@
 )
 
 const (
-	cipdBackend       = "https://chrome-infra-packages.appspot.com"
-	cipdVersion       = "git_revision:817b4f367608c498de9455bb264515442aaaca3c"
+	cipdBackend = "https://chrome-infra-packages.appspot.com"
+	// This git hash corresponds to a commit in https://chromium.googlesource.com/infra/infra
+	// to update the pinned version of the CIPD client in the DEPS file.
+	cipdVersion       = "git_revision:0c0bef53cf8083d96ea39d24152fd0362b521ed7"
 	cipdVersionDigest = `
 # This file was generated by
 #
 #  cipd selfupdate-roll -version-file .cipd_version \
-#      -version git_revision:817b4f367608c498de9455bb264515442aaaca3c
+#      -version git_revision:0c0bef53cf8083d96ea39d24152fd0362b521ed7
 #
 # Do not modify manually. All changes will be overwritten.
 # Use 'cipd selfupdate-roll ...' to modify.
 
-linux-386       sha256  f0ffa2cd53678effd1018af024383b63e47e8ba61ffef754983ab8258241d296
-linux-amd64     sha256  72b8323faa13aeab1c95056d2f489ccf63c1ec98d24c510860858c1355acf829
-linux-arm64     sha256  830c1a725bfb7c08a19a4f2b4fc173337cad97430820a5b7d9998400765fcde7
-linux-armv6l    sha256  34800b4b79c2217a8b0b895996c10efb3bcebb10bfd1a8a788b03871fba5f5cb
-linux-mips64    sha256  de236a276edb13742448797c2217882241fc2559ffb8e947a7bfc5888d4eab81
-linux-mips64le  sha256  71b16e05550183aef43e5fc441b873d94a6097776a63b246cc47775dc88e990c
-linux-mipsle    sha256  4e00c64ff6412f9a1a80cab29f90b09bbcd12e7a689d52900f9e55b185a36e20
-linux-ppc64     sha256  780c774c1538e25ecb4ae7820e5f939367d7d3bafe81e02a65f2c037a3c494d0
-linux-ppc64le   sha256  79989b1db99f9ffc64f4df95e46b28d7fc008b953da0c9f7505ecfd5194307ba
-linux-s390x     sha256  f3e17a00571ca807925d471361f45a081d26aeb7ef39bc172a79417c1b8a6a23
-mac-amd64       sha256  d652194f1232fc11e3e5a10da7ef472cc76974928725b6624003e008d0d84a3d
-windows-386     sha256  a0ffdf08b9ab822b7f9f2904128ed27e1c8b0b47a9f067fdd27816f60c89bd0f
-windows-amd64   sha256  a92ac42c6c977f827dc02548bc4f0d5c137a31dedba4aa5dd0d2fe908e609ae0
+linux-386       sha256  4958b7a7623231c6b1a530da5bc88fb1468e7fa165ddb8802cc14ad842de8212
+linux-amd64     sha256  292213783cd4302e26a501085adda272ccbd7d4733a865bbeb3cb050f3b34194
+linux-arm64     sha256  759f5a7c1433f6d99c99c4156e3997c3926c2435c960212c6e324ab6bd64ad01
+linux-armv6l    sha256  b4bcdfaa45c2d7047ced6594368758dc624bf718babfe14851e6de7a994f24b8
+linux-mips64    sha256  62fd72cbe4131d820fda543458007fbeca81a9234c86a3ae6910255ca17a679f
+linux-mips64le  sha256  2c8cda73279b00fc46cf55b09b3db984f5a8222753b87e3ed3ee280c807fb942
+linux-mipsle    sha256  6d0b68a8f013c7ee1c4f4980a788aaddf3bbc4cfecdd811e6e0df9b481a0d064
+linux-ppc64     sha256  d3b6146d37d2aec0514ac67151aed61eb995a1015fee7026fc0cac415d1282ff
+linux-ppc64le   sha256  fcb0c726dc2c37308b2ece48a095027dcbfb86e65bc677a8b1b3fd18d20dad23
+linux-s390x     sha256  2f4afbea4b1f5d7c4c474882de661bd35e6fdb4ecd34533a05ead8b48a3602ea
+mac-amd64       sha256  7a8105e4e2bc95f2cc3060dcffb44c53391ff7e380f89be276102f619910ae17
+windows-386     sha256  59c6d695a24973ef42e731e86fb055827df4f3e060481605e36c6e2d8dfd6ff0
+windows-amd64   sha256  1d26180a78ac11c5a940e7f7a26cdf483cf81ccf0e98e29007932a2eb7d621e0
 `
 	cipdNotLoggedInStr = "Not logged in"
 )