-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
1427 lines (1427 loc) · 114 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# defaults file for gh
gh_ver: 2.67.0
gh_mirror: https://github.com/cli/cli/releases/download
gh_os_map:
Linux: linux
Darwin: macOS
Windows: windows
gh_arch_map:
386: 386
aarch64: arm64
armv6: armv6
x86_64: amd64
gh_parent_install_dir: /usr/local
gh_checksums:
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_checksums.txt
'1.12.1':
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_linux_386.tar.gz
linux_386: sha256:aa59f3166e0ec9d1c50cdb2b1c7f79b3c50a302d4d12c6a2e3aafeefcd738749
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_linux_amd64.tar.gz
linux_amd64: sha256:e03f4098f9dd23166c9ad10ff312630258689d9c3706500caa3fc2e4e0735ffd
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_linux_arm64.tar.gz
linux_arm64: sha256:b022ac5cde8f8e15ddefdd645794a85e77d1ceed7c27e50f122f073537cf6b26
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_linux_armv6.tar.gz
linux_armv6: sha256:366b56d88f75857e5594d347306d4039d56ee71358b1e7d1ea45c44b151ae7ea
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_macOS_amd64.tar.gz
macOS_amd64: sha256:3e41308ad7d8a186ed9f21ee984948284ef1d843f9309d1c142d8a9d2dfd9aa4
# https://github.com/cli/cli/releases/download/v1.12.1/gh_1.12.1_windows_amd64.zip
windows_amd64: sha256:3e8adfaaa32cbf46a4cd1d44727044ba473a89e7f6ed5258cacd88d692363e22
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_checksums.txt
'1.13.1':
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_386.tar.gz
linux_386: sha256:ea9e15034c76dfeae0a7ad228e3f725f556ad38cc25b090c0759347430576a78
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_amd64.tar.gz
linux_amd64: sha256:f7555214415baff5157c0ad33e3fa6d9228c33ea5e3354b60aa48ccf23b2e4e3
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_arm64.tar.gz
linux_arm64: sha256:10b6a3e8a0e6994ca6073d10ed72d2cb660a8e55b41a3e35f53f42bad628c66b
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_armv6.tar.gz
linux_armv6: sha256:687b38a0d4ed1632e7f993e170174f7bc912e8d8eb234e695ea5cb86c39dab37
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_macOS_amd64.tar.gz
macOS_amd64: sha256:c9be03b10c94ba8b55ab9426bda909860c1fd35edd88bdaa947c785d211e97a9
# https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_windows_amd64.zip
windows_amd64: sha256:fcc00eb5bb2b605366dcab3691608ae005b0b6e7bb1904065fc2af5276c04e29
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_checksums.txt
'1.14.0':
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_linux_386.tar.gz
linux_386: sha256:cdf697cefe5c7132c6c59982ea0a6f807a57912372b6a306b9034b3112ae2efa
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_linux_amd64.tar.gz
linux_amd64: sha256:2d175e2b471984baf7ec5ba43175f16addb331d0d15caebea5d510a04911de78
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_linux_arm64.tar.gz
linux_arm64: sha256:20e70447ce7e4b6c32e5b61f14ed42d763f6b58fb7613f94040d4371fb4cbf4f
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_linux_armv6.tar.gz
linux_armv6: sha256:f1a5b5f7f838649565589e44e17bcbe5e55b477522933d7c77b0ad00161ffcfc
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_macOS_amd64.tar.gz
macOS_amd64: sha256:dbedd49ba237f25538eb30456cf3048518ac52dacb9496263774637aa1c9eccd
# https://github.com/cli/cli/releases/download/v1.14.0/gh_1.14.0_windows_amd64.zip
windows_amd64: sha256:6d47bfceb547fe60ad09528ce445aff8cc248653e6ce457b154f705ccced790f
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_checksums.txt
'2.0.0':
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_linux_386.tar.gz
linux_386: sha256:c6a24ee0638b393a3c22421d5a2b59ab1b8d31b846bb17944ecf52f78f93f013
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_linux_amd64.tar.gz
linux_amd64: sha256:20c2d1b1915a0ff154df453576d9e97aab709ad4b236ce8313435b8b96d31e5c
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_linux_arm64.tar.gz
linux_arm64: sha256:6f553156e75372307830bc58509f48b9d31023cd80113768cdc0e521d2214eab
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_linux_armv6.tar.gz
linux_armv6: sha256:c1ceaecc3053e301b37ceee588bb3d5bdca6adc8650069c5bca0d7bf2f5846e3
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_macOS_amd64.tar.gz
macOS_amd64: sha256:33dd2c9aff1ef2397100263e6c63d4f2a119add725eb4fb10d684412879e6d0a
# https://github.com/cli/cli/releases/download/v2.0.0/gh_2.0.0_windows_amd64.zip
windows_amd64: sha256:3c33ac49e2f969cc76d082a88db13f6c8050a5677ff149bce7adaca06a2b81c6
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_checksums.txt
'2.2.0':
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_linux_386.tar.gz
linux_386: sha256:f1fa82600ee2d157db8b5b995a1f7d2882ba83b69f26c354cf757053a16956b3
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_linux_amd64.tar.gz
linux_amd64: sha256:76bd37160c61cf668b96a362ebc01d23736ebf94ec9dfe3090cacea37fd3b3fb
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_linux_arm64.tar.gz
linux_arm64: sha256:659b366e043a93328f38d8c141a21a1f841757b5d94c89dc15cf5add3b2c60dd
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_linux_armv6.tar.gz
linux_armv6: sha256:fc222645b5f367ade3079c644172a983479fea0cd98e29a799cc3c4e5641262f
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_macOS_amd64.tar.gz
macOS_amd64: sha256:c9c8a716f79fbd8f0a165292e94550f15d0208e6cd3383e5ce942fd2a9ada57f
# https://github.com/cli/cli/releases/download/v2.2.0/gh_2.2.0_windows_amd64.zip
windows_amd64: sha256:736d3a6090687b1a3d4f98d9cd8344b50bb3c37264e32890936052c3725574c5
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_checksums.txt
'2.3.0':
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_linux_386.tar.gz
linux_386: sha256:2a185efb2269943a407b6eef199d57236f6b75abfc58d99133e3043ec953c460
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_linux_amd64.tar.gz
linux_amd64: sha256:268d85e3befebc73afbb0b4478383ceebc40f5f7bed8d3e1f725a1a336a1845c
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_linux_arm64.tar.gz
linux_arm64: sha256:d4d6d1508a0cdbca78385db709de33e6e47fd7a17319e2f7f773d290c1fe8242
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_linux_armv6.tar.gz
linux_armv6: sha256:a03ab53d078c365787b2efeeea59df9f329172a7126bcbff9c392bf6eb3097bc
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_macOS_amd64.tar.gz
macOS_amd64: sha256:b10d6c99cc5d58c07efdd8a04cb6f182a3b0aa3b833d5c9a2f05c241ffe40701
# https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_windows_amd64.zip
windows_amd64: sha256:0e3d0ce47cd73c45ea1ed87f0a8ced279e657639ec3e35b2c020f80c84a0c474
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_checksums.txt
'2.4.0':
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_linux_386.tar.gz
linux_386: sha256:bc5c3695496b79fa1a6369864d8463921e31678cc74de85000deffbc715c0d6a
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_linux_amd64.tar.gz
linux_amd64: sha256:e3fc4ec95c95ec5e97e90c0128b9be60e8095aaaf01e1def4f0cfabc5efcecc0
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_linux_arm64.tar.gz
linux_arm64: sha256:d2e0a349f0caed077dc94d9fb4031fc3745fa26a1ea6e40c8cb3da9d1b7b6c82
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_linux_armv6.tar.gz
linux_armv6: sha256:7fc8f308a639f7ab0c7aedfe5286c8c3c1b8a5a3c0715de92e3252b376068a83
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_macOS_amd64.tar.gz
macOS_amd64: sha256:0317d420ce5976fee59f26bec059e5ffcb763b9e7af708176322d11d14d893e1
# https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_windows_amd64.zip
windows_amd64: sha256:97c50d2c33e9c402ba86807517d4956e22df0af374e7204c9c77074b7be0a87f
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_checksums.txt
'2.5.0':
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_linux_386.tar.gz
linux_386: sha256:34731614d5304549241b0f5966e087dfdee2945a8d4be4af5389a60d85108f1c
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_linux_amd64.tar.gz
linux_amd64: sha256:4390bc476cc79c33346be3e0098cfbb3afe2257006fcd38765ef83569df11a0f
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_linux_arm64.tar.gz
linux_arm64: sha256:45cf80192438846315014494346d534a881baebcb85822dacf6da7d73cc866a3
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_linux_armv6.tar.gz
linux_armv6: sha256:44e44829a5361957217bfd7c2c8c6dc88fc5f56a72f2e4df772e0ea551a493bd
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_macOS_amd64.tar.gz
macOS_amd64: sha256:54d0a049de817236611e9f3652ecf0b2341fe0024671dd50359aea0f3acbb686
# https://github.com/cli/cli/releases/download/v2.5.0/gh_2.5.0_windows_amd64.zip
windows_amd64: sha256:21259205f06c86c4d49cce957c44ddaf5f7d9a4f1553421feedfc672dbd4c1d7
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_checksums.txt
'2.5.1':
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_linux_386.tar.gz
linux_386: sha256:b911c001bc84783a7527429b48a93508074952758e3314853cecc6bd0a6494c6
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_linux_amd64.tar.gz
linux_amd64: sha256:ed0c1a54edb83564bf3d608fa87fadb85175dca66bcfaeff98193238482c24f7
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_linux_arm64.tar.gz
linux_arm64: sha256:4de925151725b54ffecc29f49314301b865ccd50e18301fd8a529a5f73cae19d
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_linux_armv6.tar.gz
linux_armv6: sha256:da72d92f28bd79f5be7dd7d2a306062d7ce8a2d4e77adb9da538d699c5445cca
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_macOS_amd64.tar.gz
macOS_amd64: sha256:9a057b5443c1afa53b5051eeccc4d0f5dea4d1c8c59ca6cb28d41185fed17bd1
# https://github.com/cli/cli/releases/download/v2.5.1/gh_2.5.1_windows_amd64.zip
windows_amd64: sha256:3d9183205f708ec39e0042d5e94d4ad34977767102df0bc5695baa363225b99e
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_checksums.txt
'2.5.2':
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_linux_386.tar.gz
linux_386: sha256:76b65d6115284d9fb02541f857eba63220b24c991a980b336c8d6258e3440438
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_linux_amd64.tar.gz
linux_amd64: sha256:30629f88c1a142cb325a4f706eec812aca771f1fae21e9818057e8735883d89d
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_linux_arm64.tar.gz
linux_arm64: sha256:34406c53c6c4da792e9b9b9236ff0bb797a14e6fa9ac4d4879f341d430b56008
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_linux_armv6.tar.gz
linux_armv6: sha256:3c02b5c62f14778b6fe29145c92f52a3890dbcee4e9f09cf37fe90ad5c0e2f1a
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_macOS_amd64.tar.gz
macOS_amd64: sha256:1e4c9d584f56aeef62d22234db177bf3494985ae02c0499abf790f44a269f060
# https://github.com/cli/cli/releases/download/v2.5.2/gh_2.5.2_windows_amd64.zip
windows_amd64: sha256:5a7d09e468f90ef260552f9bea03739586f468912b077a161002e74dc4c12375
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_checksums.txt
'2.6.0':
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_linux_386.tar.gz
linux_386: sha256:ade7e31406120867a97f89eb2fe6d438521e688783b9f46f688f3fe997c9bf4a
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_linux_amd64.tar.gz
linux_amd64: sha256:4ed92c712bfaa002c9421cee12cdf4cb0ae76fcd49d60cab5d316b8ce9c0314a
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_linux_arm64.tar.gz
linux_arm64: sha256:b92e36fc58836cf8d8bb0f3214665e4fa034c37ca86c9d553b8c21c793cb5e59
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_linux_armv6.tar.gz
linux_armv6: sha256:5e0804e505b9d1f7f898f0b80e06cbc779dd1bdb98e2b751f6c35a27ae350dc7
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_macOS_amd64.tar.gz
macOS_amd64: sha256:4a802e7e6f8b6b895fe4d3cce06b80491e1ffdedb151e8fcd91ddd2b57f44862
# https://github.com/cli/cli/releases/download/v2.6.0/gh_2.6.0_windows_amd64.zip
windows_amd64: sha256:4526dac96d6ab42fc931bd0a3d1674db6da23f3997c5cff2817dd0ae481b0f37
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_checksums.txt
'2.7.0':
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_linux_386.tar.gz
linux_386: sha256:230c90442ac09a65f229e8f5b47496ac6ad57390acd0aa6c86f69d1f1bdb2e1d
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_linux_amd64.tar.gz
linux_amd64: sha256:597a5b26d162b3430cbd1fe3dfa98c930c84d0d8e96ee98700d388a9b33f3c49
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_linux_arm64.tar.gz
linux_arm64: sha256:a3ab8d6b7439280e9d11dc043e30551615b419137242a9da52ef39b015f5ae09
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_linux_armv6.tar.gz
linux_armv6: sha256:ece5423b2d4f6d2b5a606c5c2579bfc6f20097b61584479109c67a10fb11aa49
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_macOS_amd64.tar.gz
macOS_amd64: sha256:65fda5734c54a2d2b208972bd776e47d8c33e0379264a73aeb9771ab11ee0ffc
# https://github.com/cli/cli/releases/download/v2.7.0/gh_2.7.0_windows_amd64.zip
windows_amd64: sha256:c4e5beb649ce416b8390e0cbddfd92ff9f92602cc51637403847c12f3e2b122d
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_checksums.txt
'2.8.0':
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_linux_386.tar.gz
linux_386: sha256:8c4433bcf073a08f1496fed96bdf6f247781d04617b1f56cff03fbed302556ac
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_linux_amd64.tar.gz
linux_amd64: sha256:3db79714805262011b2dd65235ed602c0f931248297b0e5f2b25fcf88a1a2757
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_linux_arm64.tar.gz
linux_arm64: sha256:684321133d176df901a7915e3f3582c81d807e22d3b0d2b9c3630837be110416
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_linux_armv6.tar.gz
linux_armv6: sha256:7c323739a2a8189c71b1adb8475976d806709c2a6bd27ace2972370061f21572
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_macOS_amd64.tar.gz
macOS_amd64: sha256:23aa2040462449e68e55a64c9ae14bd1b1ca4538b11f637023b90ccbedfa6353
# https://github.com/cli/cli/releases/download/v2.8.0/gh_2.8.0_windows_amd64.zip
windows_amd64: sha256:0da87247cff625bf888a3a5be2007f8564061bfc7187339a24824ec00505e416
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_checksums.txt
'2.9.0':
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_linux_386.tar.gz
linux_386: sha256:6b1b96882e30365fb541ccb65de55dafda435bd12097f35c10eb548c7cfd0eec
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_linux_amd64.tar.gz
linux_amd64: sha256:59b0f148b9e105cca1a0614503d9c9a1ccf63851203acf9a577a4cedb190132d
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_linux_arm64.tar.gz
linux_arm64: sha256:9d9b07ceb5c3f9913c2560c29b24160bac07a9fc00c1c8ec2be054c9e419df3d
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_linux_armv6.tar.gz
linux_armv6: sha256:7c0d97c3868f48c2a74152a6331072a3b002aa35e781e7ac0272a7f0bbb18984
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_macOS_amd64.tar.gz
macOS_amd64: sha256:868355c87793f07b8a189062f5853b2aa7fb0a9cce423d1d0d4326566628460a
# https://github.com/cli/cli/releases/download/v2.9.0/gh_2.9.0_windows_amd64.zip
windows_amd64: sha256:349ef29f1112de0a7c33d8cc19733cd476e85a298fd17efc6c068d11383a7b47
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_checksums.txt
'2.10.0':
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_linux_386.tar.gz
linux_386: sha256:426e25b1e5173bf51ed4adfdb27cbe0d50255cdd1586fc311d98be9740a28376
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_linux_amd64.tar.gz
linux_amd64: sha256:f505c445c7e9afddc856245aaaa918d02123879c4fd1db8194b482a0a19b87c9
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_linux_arm64.tar.gz
linux_arm64: sha256:cfa524bfbed461741b1507555ef621a6a073ac8fc072c36b5dcf812db99c75d8
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_linux_armv6.tar.gz
linux_armv6: sha256:e2448233549d10191d3cbdf7a9e836132e616fcde9b9f478169bafdfe1692a1d
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_macOS_amd64.tar.gz
macOS_amd64: sha256:daf6ca54a7cad8e43898ad9f6a0d2f88a63647db090ba46c1efd2838d688fcac
# https://github.com/cli/cli/releases/download/v2.10.0/gh_2.10.0_windows_amd64.zip
windows_amd64: sha256:119b6929d09d9c3e656360942beafa774521ee015e703b710d629681b5534f74
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_checksums.txt
'2.10.1':
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_linux_386.tar.gz
linux_386: sha256:991a851392bce649ca776091990fd6b31ccfb71570a0af8f1d41bd4463e81d76
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_linux_amd64.tar.gz
linux_amd64: sha256:d6bc8e8d3879a1315158b8f20535e8da5e8de99135a820571771f58b9e41acca
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_linux_arm64.tar.gz
linux_arm64: sha256:2c7dbe8bbeb22df626a5e3673f75f1ca650fe8b5f2f09e5ebd432dfe88eda8a1
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_linux_armv6.tar.gz
linux_armv6: sha256:b3682151126cd3c0128e52f73d1fccf0a95092da4f2fdac0011f84cc55df494f
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_macOS_amd64.tar.gz
macOS_amd64: sha256:621ec1d4662439348c5f2448b70826f1e54eb31a426562f5a50dfac1501eee2f
# https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_windows_amd64.zip
windows_amd64: sha256:252fb104f5d18c14b1d81056c664877425a0642771745d78eeb346b4dfc65371
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_checksums.txt
'2.11.3':
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_linux_386.tar.gz
linux_386: sha256:9d464932f3c1762cc1cb3bbcaf2624bf327e66b3ffcde38dbf245c53325d130c
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_linux_amd64.tar.gz
linux_amd64: sha256:51311dc3d2e48d02655fe4943ea4f156171f5baaeb49ecb7284802b62cacf924
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_linux_arm64.tar.gz
linux_arm64: sha256:c0bc9af98250179e758c5bb79c0230c5c089ed42a687f47321e1f0148499e7d4
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_linux_armv6.tar.gz
linux_armv6: sha256:182331447a12d101605c30b407d7c9ce6ed41100657cbe475d7e8ab75d124f6d
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_macOS_amd64.tar.gz
macOS_amd64: sha256:cb278d419c60913ca7d71fa8dfb713d03c05f51a9ee724f604390b51ac30e363
# https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_windows_amd64.zip
windows_amd64: sha256:71abb6549bc20217fbbb82653d09b03a9cdc5bfbace749dca94cbba750666529
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_checksums.txt
'2.12.1':
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_386.tar.gz
linux_386: sha256:f1c26734ad7b52bbf7736c17ffc8a0148325aecad60025f2de7a4298d5b21c65
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_amd64.tar.gz
linux_amd64: sha256:359ff9d759b67e174214098144a530a8afc4b0c9d738cd07c83ac84390cdc988
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_arm64.tar.gz
linux_arm64: sha256:5906fdd8f1cce057b577b298bc5e688f82acf376f1d746c7dce938f689554929
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_armv6.tar.gz
linux_armv6: sha256:777a481cf7f683b5f92719863002731a3c69488f6d8f854236463b1a751aaaed
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_macOS_amd64.tar.gz
macOS_amd64: sha256:448d617c11b964cff135bab43f73b321386c09fc5cdd998a17cbfc422f54239e
# https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_windows_amd64.zip
windows_amd64: sha256:18c606959b9de19b29815b06ca48a30b830f3ca2dfda862aabc0054573f3d364
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_checksums.txt
'2.13.0':
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_386.tar.gz
linux_386: sha256:3e3764472778d5614efd9fc8a3e4133c6b48c2e3286e2208ab58ee7791a6bd90
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_amd64.tar.gz
linux_amd64: sha256:9e833e02428cd49e0af73bc7dc4cafa329fe3ecba1bfe92f0859bf5b11916401
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_arm64.tar.gz
linux_arm64: sha256:ab2b391fc40bf01b7e13577569fbdcfafb8455090e1d8d79bbb77646d4872b5a
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_armv6.tar.gz
linux_armv6: sha256:a5032c7829ba52636eb247fb79b198628dbd59751d53ed6d22cd2f663a06f003
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_macOS_amd64.tar.gz
macOS_amd64: sha256:54612aaf8b8c35da5eac168d7ae5ee6bf8ed6bcfcadc612a6c188fe42308cac4
# https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_windows_amd64.zip
windows_amd64: sha256:8932b0c9ee45dfbee5a734095def57076f05cf9bae053978979ea74639611564
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_checksums.txt
'2.14.2':
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_linux_386.tar.gz
linux_386: sha256:70131d8180b9478e543aff4021d7ee4ca5fe97d52388b852b2a7ccfd75d33743
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_linux_amd64.tar.gz
linux_amd64: sha256:3d4be4bf3446622c51192529f963d8719a2c78cc545aeab6fefff1c9ecf5b346
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_linux_arm64.tar.gz
linux_arm64: sha256:67aa87a824586f55600a5e8b7beb017ad14ba416110db9680c9829064c549c20
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_linux_armv6.tar.gz
linux_armv6: sha256:5873cca2aea9b2a464fac93f04bb5ded3081e8c220603bbb1c7c9164f221d7ce
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_macOS_amd64.tar.gz
macOS_amd64: sha256:726caf2ed4c466b704d570b6119099b2f18bccc45856b643bc44f54e37d038ad
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_windows_386.zip
windows_386: sha256:713a2fbe985621b7b5f22a5802b1381c0d44e7ff3e82b0202cbe439c9a2032f9
# https://github.com/cli/cli/releases/download/v2.14.2/gh_2.14.2_windows_amd64.zip
windows_amd64: sha256:12b0dd5e41f9773bfbc42ad83b5b42144bd2072da186f8c142440689b0cbf6bd
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_checksums.txt
'2.14.3':
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_386.tar.gz
linux_386: sha256:7a7d4e208b49c5af3211c619d7e7df927219799994390d7cd3e0e453c2e71326
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_amd64.tar.gz
linux_amd64: sha256:95fe2e93bbd7a9f02d5b22cee01a53ab6d581fda8fa170364b668d142840ef58
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_arm64.tar.gz
linux_arm64: sha256:27f1fcd43a47d045fb71f93e7768c1262ac5b5ca8f42e4f857dab61c3f55330a
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_armv6.tar.gz
linux_armv6: sha256:58842470bf3d2f992bf6b4138874dc0089c32d15d2ffa7358f1340512839884a
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_macOS_amd64.tar.gz
macOS_amd64: sha256:99eb7003c004efda33506c03d2220c60e392ea89260945df548c60f28a6c129a
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_windows_386.zip
windows_386: sha256:e8495cc928a9d5c8811c200c69e090f82a8da8a5d688fd8f24595110ace5f51d
# https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_windows_amd64.zip
windows_amd64: sha256:bfe2b103ba79f574805a4cbddbc728e1fd0953799e1c40df5baa2f08369351be
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_checksums.txt
'2.14.4':
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_386.tar.gz
linux_386: sha256:bbbeb60c6320b2ec03b932567a4249f56ff4cc641989121a946dfb7c65be399d
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_amd64.tar.gz
linux_amd64: sha256:673a3adff9a847298e39c4593877194198229c12a9a4f4333765e58de230ccb0
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_arm64.tar.gz
linux_arm64: sha256:c9dfac4764b817e5638026bd1a6e17c35e42933df6c09c8f47e19f661ade4b00
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_armv6.tar.gz
linux_armv6: sha256:1a7790bb2b1b8a881b72317a85f7198606409eee56b938db58e726608aa16c79
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_macOS_amd64.tar.gz
macOS_amd64: sha256:2b79356ab25fb793e7cdf713e68e74bf23a838ad1ac1560e5f7743a02f9db98a
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_windows_386.zip
windows_386: sha256:e5d98538fb45db164d80464e7936b48b7a4e374d983bcc36a0fdd0eea2cce881
# https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_windows_amd64.zip
windows_amd64: sha256:09fbc2463066fbded5148878766d8c1bf6a91d726eeb7ffff182054564610b3c
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_checksums.txt
'2.14.5':
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_linux_386.tar.gz
linux_386: sha256:20046bbe896e28f39c14149481ff351338b8c918d8f65952fffa9a615005141a
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_linux_amd64.tar.gz
linux_amd64: sha256:bc4fab8fc03b48ed8b5ebd6f4b7b40618b319f3e066dcf34bf509265562339bb
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_linux_arm64.tar.gz
linux_arm64: sha256:786d0cb269dc45a10254913407c0654a9e4d7130785961e412e9ceeef6a72cf9
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_linux_armv6.tar.gz
linux_armv6: sha256:da6962794966113725747e6456e7c1bf7505d02f02618bdc097974a1dfa5799b
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_macOS_amd64.tar.gz
macOS_amd64: sha256:03bbcd330d2dfc3e0bbc47d43ecb27e461acab753d868766545ca54269f6a279
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_windows_386.zip
windows_386: sha256:835a1c608a1c6c77ab172e6c2189568c3c8b1b0bf2776c741abc6c97a39be548
# https://github.com/cli/cli/releases/download/v2.14.5/gh_2.14.5_windows_amd64.zip
windows_amd64: sha256:61aa2e6982c6159a8b0ab68c3c1b103880f4c513089a4d122297355774048f95
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_checksums.txt
'2.14.7':
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_386.tar.gz
linux_386: sha256:b516d3239612e14681f31dbcc632704f9975b4b625906f23f1aff956835dd088
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_amd64.tar.gz
linux_amd64: sha256:d174d0057b72ad0427d3225225d50d4dffaa61f3c000deeaf96248ae49deb2be
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_arm64.tar.gz
linux_arm64: sha256:ccb6e32c5830996abe8383531e3175c68bb895745bab7914ac5fe53c26b69c94
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_armv6.tar.gz
linux_armv6: sha256:ad1532acbeabf3cd3a24298a5b03b388d6c8be2a2f490ad2eee35a09bd2e68be
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_macOS_amd64.tar.gz
macOS_amd64: sha256:0c74870d6d4844915d5fe6263322893e7e01eaf07cf3084f1630bedd36c62491
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_windows_386.zip
windows_386: sha256:9c55ebcd2388c8a83979dca4ebe0f4214e0a48ee405a03dd3b647378c273e8a3
# https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_windows_amd64.zip
windows_amd64: sha256:f28af85dce3319ef8049dee0953ec3421dc747731e4849d6c4de9d54c2e18d71
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_checksums.txt
'2.15.0':
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_386.tar.gz
linux_386: sha256:3505a547c402f4d079e9381cf0ceef096653d26f2e1388ab0628cf776c1cd6a1
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_amd64.tar.gz
linux_amd64: sha256:c1ddab00cc406c34f17f40e3969e9d6690606dec0df564c5d533e5020598323d
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_arm64.tar.gz
linux_arm64: sha256:4d88daca01db5c9efb5815e297cd3f8ee55c928eda7fa0cfe3f1dfae6d1cc8e5
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_armv6.tar.gz
linux_armv6: sha256:368ede2e0f3acd19f59d37739780ec3ace71f77df14de322c01d3d80a13cc848
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_macOS_amd64.tar.gz
macOS_amd64: sha256:396972e1c340624879922cd0d7f553f9f9729a14febc56505ebea96713d89e34
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_windows_386.zip
windows_386: sha256:fc6fcfe0f569ed35881a3ae45e756de02d85359309f32adea4d713d4b5030c9e
# https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_windows_amd64.zip
windows_amd64: sha256:a4a49ad59bdd79be00375ab7426d3cb15bdd7bcdc50b0df7ef1f4bdc96315dc2
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_checksums.txt
'2.17.0':
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_386.tar.gz
linux_386: sha256:ed2ed654e1afb92e5292a43213e17ecb0fe0ec50c19fe69f0d185316a17d39fa
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_amd64.tar.gz
linux_amd64: sha256:c6ce28981a1fb9acb13ee091b5f3de8eb244a67dc99aff1d106985c1e94c72c6
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_arm64.tar.gz
linux_arm64: sha256:d373e305512e53145df7064a0253df696fe17f9ec71804311239f3e2c9e19999
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_armv6.tar.gz
linux_armv6: sha256:3fb9532fd907547ad1ed89d507f785589c70f3896133ca64de609ba0dcc080d5
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_macOS_amd64.tar.gz
macOS_amd64: sha256:3516a4d84f7b69ea5752ca2416895a2705910af3ed6815502af789000fc7e963
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_windows_386.zip
windows_386: sha256:d3b06f291551ce0357e08334d8ba72810a552b593329e3c0dd3489f51a8712a3
# https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_windows_amd64.zip
windows_amd64: sha256:96d4e523636446b796b28f069332b6f8ea9a0950c6ef43617203cc5ac5af0d84
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_checksums.txt
'2.18.0':
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_386.tar.gz
linux_386: sha256:fd374de8ead214c2c590c8fb365db99200d246b41d8bcb27cde50deacf16864c
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_amd64.tar.gz
linux_amd64: sha256:6b091b0b21ee8b0ec257920968905dc065505f5718e5a7de1e9d287320869ef8
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_arm64.tar.gz
linux_arm64: sha256:83cc6009eb3bd33c4aebe8f642acfc1283c5d1aa014d084ed5a806cf402ec556
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_armv6.tar.gz
linux_armv6: sha256:5ffbe11e124b4196cd16454322dbd68d46040f68f97fcce94f611fb92612561a
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_macOS_amd64.tar.gz
macOS_amd64: sha256:bd541bba4d078f8cd5d824db0d2333786e788202469f977c4d71aa76466dbabf
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_windows_386.zip
windows_386: sha256:edf6c1ac84d9fc7813e6e5364036bf2dc087d1394161aecdef68ae142ae7c261
# https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_windows_amd64.zip
windows_amd64: sha256:c66037cb69db4457d6ea87859e193085d4d0f4a924238aedd452fed6ea927036
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_checksums.txt
'2.19.0':
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_386.tar.gz
linux_386: sha256:45f8524fc46482f3056b40cd36b3c3aeea62917a8a26bd47f3781e515402c420
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_amd64.tar.gz
linux_amd64: sha256:b1d062f1c0d44465e4f9f12521e93e9b3b650d3876eb157acf875347b971f4d8
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_arm64.tar.gz
linux_arm64: sha256:a37ad60126cdee164a2ecbeb25f6c48615c37c7291c7e1fb815b145ae6198d74
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_armv6.tar.gz
linux_armv6: sha256:9472153dbbec375de35522a693d1372048b19e21a603628e99bbb280cc7eed52
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_macOS_amd64.tar.gz
macOS_amd64: sha256:a37f1e522ba71c145d64a07ba116b88e8d72b3dbb4aea53549cd7dd1c2b129e7
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_windows_386.zip
windows_386: sha256:dcfe6cc60bcf57a8519a68b8362ecddaa51d82919cd8ed9394124847447f0e37
# https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_windows_amd64.zip
windows_amd64: sha256:a896463430e9d96dce3453871df50a87090d069b4f3578d1588a33690e0800f8
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_checksums.txt
'2.20.0':
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_386.tar.gz
linux_386: sha256:36858e1ea7fb33d122bc7db929899467eb416cccf0339d7fa0a95abac8b510b4
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_amd64.tar.gz
linux_amd64: sha256:e942ed4d378e269ce1376755c2116a695f43efb503ddb5986655e58992c06b9e
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_arm64.tar.gz
linux_arm64: sha256:98a8b14086e7193ea210efc76854af0a69176c4cbf029fb430c81575b715cd6d
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_armv6.tar.gz
linux_armv6: sha256:c9132c2c2f52160b7d421a2cce49ec0f4419ed5f8dd3ce3d312a06ae23cdfa76
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_macOS_amd64.tar.gz
macOS_amd64: sha256:ced805ffa8d93221f8f809175168c9d363a24c4058f601e1c90969cbebc7220f
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_windows_386.zip
windows_386: sha256:84c07917bfdac55ef17bd2b4f24c7483fd0fe8aee8ae1f4185d8187b524260f4
# https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_windows_amd64.zip
windows_amd64: sha256:adebeedcd5d0839d4b41804208adbbbd5dd5796c3e486fbecb8c8ef602757b26
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_checksums.txt
'2.20.2':
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_386.tar.gz
linux_386: sha256:ab7887def12a164eb0527fea00681df73453c29d1406f51ff1e82f67e7393db1
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_amd64.tar.gz
linux_amd64: sha256:3bc7cd3b2fd9082218b8246595673f55badb351db1b9e627eec121beb8b26450
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_arm64.tar.gz
linux_arm64: sha256:c9aaa99fd4496be714738620931559f5bab3edc343ea87bbb070d97a1a780554
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_armv6.tar.gz
linux_armv6: sha256:46efb77e397e4a995096dfca3dd2619d087fa7b6f14e3e58ff290b3f7690c951
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_macOS_amd64.tar.gz
macOS_amd64: sha256:24838100d88b16fef271c562db5d14e3d291b61f1a99b39cb1edd3d5223a33e8
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_windows_386.zip
windows_386: sha256:d18b329c351036bb18a496741812206b3d9f353b59c1a816df7952a38f39f0a0
# https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_windows_amd64.zip
windows_amd64: sha256:e7cba4e2e7a5fe719879a8a507f9bb205101560a945bdc21e2283f67ebb0a4fe
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_checksums.txt
'2.21.1':
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_386.tar.gz
linux_386: sha256:562d304de4e28029159fd805c755c2f7f204d03027bd65ea4ca02bce58e24c2d
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_amd64.tar.gz
linux_amd64: sha256:0c0ab559721d2ff05df9d64fcdaca4f8f0b76d177832379116bd5c4d032fea88
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_arm64.tar.gz
linux_arm64: sha256:597447f94c07d4680fba787137fd1354ee9f963366a712e5d718aa24cd8f9bd3
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_armv6.tar.gz
linux_armv6: sha256:4218c205359a8f4b94e56419d6383301ae43265c4217f6567f054cf76aac9490
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_macOS_amd64.tar.gz
macOS_amd64: sha256:94ee037c618e865107c197ed581c32981d3f8678f231525f0ebdc5962d2914be
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_windows_386.zip
windows_386: sha256:6e18a591d9d11502a7fb97659ba80412f05d87b28ca9f045af420601d9f1101c
# https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_windows_amd64.zip
windows_amd64: sha256:e06aff75308d6cef653092eb39a3fcfad5cb8fab6eba9089c21bc05ff137c900
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_checksums.txt
'2.21.2':
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_386.tar.gz
linux_386: sha256:35f86cf39f1f7b98a8342a4b5d8c1d0955e41362cb39423b4243edeb6e911622
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_amd64.tar.gz
linux_amd64: sha256:6b3e56ee3253795d9c48e019cfd7b8dfc03b28073a411d1f527f5021764f63cb
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_arm64.tar.gz
linux_arm64: sha256:fc341a2672d9444ed963530cf4ab28a9590ae07b644ce0de52372b3477535b01
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_armv6.tar.gz
linux_armv6: sha256:b9a4354d42174d444993177876c40c8fc77df01c23dc7a3ab99fed90a88966d2
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_macOS_amd64.tar.gz
macOS_amd64: sha256:3187174428dfb73b712f50b550e6a148f3f0ad4b2dbdf352519b159652ed9f50
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_windows_386.zip
windows_386: sha256:cd4ab8dc98fc92aea498d9cffef84c8ec872293b2d356ba08b226edd18cdc80d
# https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_windows_amd64.zip
windows_amd64: sha256:f6e4aead0cd85cb50f811f4a3497f288f52a013589b48e684ec617510463580f
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_checksums.txt
'2.22.0':
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_386.tar.gz
linux_386: sha256:cf485d2c10ce0551d686611fe6ff0d628afb14f33f38e62fa461b2e96e91135c
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_amd64.tar.gz
linux_amd64: sha256:065d78c51f4e400c1dfe4e3cdc14832ff8d5204926a485f5ae06d52f411eec04
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_arm64.tar.gz
linux_arm64: sha256:33d36e860fecefc3441faadaf91b993899dfc0d1e6ede458c83bafe906d8ae15
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_armv6.tar.gz
linux_armv6: sha256:a0cb066212c356b0d78756d961d948c13cdb7d033e3990487e17e7699ef442d5
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_macOS_amd64.tar.gz
macOS_amd64: sha256:f69c0073ee16adaf14d3537a8e439c0bbd3c1d581210d363d902a682cd8f54d6
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_windows_386.zip
windows_386: sha256:26f7e81b6b5d4e62ea15ca6edc8c889259b9a1a551376b5b8140e3c2a1980e37
# https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_windows_amd64.zip
windows_amd64: sha256:39fdfe5a03ab40bf98e1376e5ac44ea5b6227f1562f8f1632b6d91700077e0ac
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_checksums.txt
'2.22.1':
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_386.tar.gz
linux_386: sha256:81c2e6b7ab316460bb5d72ab5605fda5e481b3a6162d0425dd1837ebee3077c6
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_amd64.tar.gz
linux_amd64: sha256:76f7e18bdad5ddfdfcab40fce86c8d6f9fb27f9d29c1287cdf71e0d6b45ba84b
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_arm64.tar.gz
linux_arm64: sha256:9122024da9fe47e15c718dbd8a57c07f9750e6312ad91b405d835b0dd44f746d
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_armv6.tar.gz
linux_armv6: sha256:45f39108cd0d08a1f6d0bb3d26ecad40d515001bc10fc1e22396c650d316520d
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_macOS_amd64.tar.gz
macOS_amd64: sha256:a9af43a3e55e4460388d46c372a9e94def67c17ae700af11e5084dea30846d41
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_windows_386.zip
windows_386: sha256:c80a1d30e6bae37661c4368f7a375e0f0be520cc1741254fa752ffccae0155f5
# https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_windows_amd64.zip
windows_amd64: sha256:b51fdf145f472a63b4dbcb05b5eac843abaefbbb73aeaab9a67cadef9c8f22b1
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_checksums.txt
'2.23.0':
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_386.tar.gz
linux_386: sha256:46edd84d21b69b367c67dbc41e42843dd1e0ef5f1706200e91c075a6145a3da5
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_amd64.tar.gz
linux_amd64: sha256:774c4ab16e962f851664162e4d5ebe6fe2a7b8143afaf1a2ebbfd115f0517da0
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_arm64.tar.gz
linux_arm64: sha256:2f3b615a27bf495402cd612526ebab123d0b0eb70262447ec01e357d89981d39
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_armv6.tar.gz
linux_armv6: sha256:dd62225a93caa3d37c2ffb39c2e36a4ce33d191d93398348abbef266389df65b
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_macOS_amd64.tar.gz
macOS_amd64: sha256:b0807d5f0dafcfa8fa2c911beb63cf3ffbc6958a282fcc98545dc9d9070fe4b6
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_windows_386.zip
windows_386: sha256:d007d515c83698b349952a9d21ff129e7e7abf0370c4062f06a1c18f4ee7d47a
# https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_windows_amd64.zip
windows_amd64: sha256:c455548ea4139ae885dcda0ce2277cdfe4236d355bb145dc7590b2580eeffee4
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_checksums.txt
'2.24.0':
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_linux_386.tar.gz
linux_386: sha256:7629d44048da568ad34334d083ddbeacded25d62070f335174dc60ba4b250198
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_linux_amd64.tar.gz
linux_amd64: sha256:9e66bcc5ea256373fa5521a13cd92e0b9495a8e032039e4bbf16dc6b6eb3fe93
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_linux_arm64.tar.gz
linux_arm64: sha256:f289213bf9586ecd5997e196b6fa3ea42431f31844e1d9451e8b6b93379902b7
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_linux_armv6.tar.gz
linux_armv6: sha256:10d8119c7d51617861b4abb4b2b99d3cbfaca4f1349fdf5d969597e15e404ba1
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_macOS_amd64.tar.gz
macOS_amd64: sha256:def4f2a4ca1a1c50c04baf3f2fb1647611ea1749f8c1e2b5ca9892d6a4ff656f
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_windows_386.zip
windows_386: sha256:fb4b77291df7222c9344dfed9af139276b42c778eb8ecb489f57e54c61bbf18d
# https://github.com/cli/cli/releases/download/v2.24.0/gh_2.24.0_windows_amd64.zip
windows_amd64: sha256:fb6796eea0e47206b750c7f326c161fb802abac0d23f4ef406e970afe4108a45
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_checksums.txt
'2.25.0':
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_linux_386.tar.gz
linux_386: sha256:61d8bb9d39da32a2dcdaa8e7393951949bd2efe6e42b1b55c5bd354e849d9e68
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_linux_amd64.tar.gz
linux_amd64: sha256:be919ddfb95cf3c87e542cb048b593368e17e962bf7c4743541855cd339cd814
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_linux_arm64.tar.gz
linux_arm64: sha256:e4d95a7f8bc820a0b1d694cb323ee8aec7922a0d1edf191a847d86a0e3091473
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_linux_armv6.tar.gz
linux_armv6: sha256:718d4ae935fd8d772a530f1c54ea45bc739d1864cae78283524317c4266524b2
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_macOS_amd64.tar.gz
macOS_amd64: sha256:789447abbb8da6ba757029daa9c6b486e1912f5b8f2b19cbbf6db5ccd76d4b45
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_windows_386.zip
windows_386: sha256:222b7ca75c03ead9f55bf9129a655de35d0845e7491ab506af901ee4f1b4808b
# https://github.com/cli/cli/releases/download/v2.25.0/gh_2.25.0_windows_amd64.zip
windows_amd64: sha256:3e67a6970a5cf90e0297cfa136bad82afb4bd9f54196304038a9023742442e32
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_checksums.txt
'2.25.1':
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_386.tar.gz
linux_386: sha256:6302a378473c6cfde14fb0431aa925beb1c890f166cfb95febc8c344e915475c
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_amd64.tar.gz
linux_amd64: sha256:869e780f9391804c1f9d355f6f7777931ef61447ca50c75433a5942f484e61d1
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_arm64.tar.gz
linux_arm64: sha256:d4417c96f67314a963c40a312b68da7a616b4a5d5450b22b5aae99b24ea5dc70
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_armv6.tar.gz
linux_armv6: sha256:66fd706a0f7a97db407c64406576e196ef9976937ce2fbf42da8ad9037973307
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_macOS_amd64.tar.gz
macOS_amd64: sha256:414f5766a50b95ec73fcff17af6dc5c354b44d7f041370fea9de8f91990cc419
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_windows_386.zip
windows_386: sha256:34f3bd1b378c08579e88729594178d4019e376943a473b6f0b9bb078754f6a68
# https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_windows_amd64.zip
windows_amd64: sha256:33be468155dabc1990e984eb9cb9e134c50cfe1c0bbeab92643355a8ea04e162
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_checksums.txt
'2.26.1':
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_386.tar.gz
linux_386: sha256:3dfd2a887432b1af74ef69d1040648dbbc22548963d67547fbdb22fed64e4170
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_amd64.tar.gz
linux_amd64: sha256:4e1f98c10eb0af2c3bfe6849c10328a2a2446a9ff4294db0dfdb20b7d16eaecc
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_arm64.tar.gz
linux_arm64: sha256:3378a02d99576b25401688b0fdf11681df7d5dc2bb43aa911a40104b57c783da
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_armv6.tar.gz
linux_armv6: sha256:ebe69d71d2139c473adadf5fe1ab284b10693a88837ac79405ae629eee914512
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_macOS_amd64.tar.gz
macOS_amd64: sha256:ef398ece1f31d033df6374458f7a87500ccdbdc9964170db04b6a5f707632417
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_windows_386.zip
windows_386: sha256:282d9d2ddba652f5f673354fb6b982097aa052d8aeb6e226a6e051995a1ee73c
# https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_windows_amd64.zip
windows_amd64: sha256:eb921ad9a452a1b584bf586bd7a154748f8912234ccfb5868ee9b96faeca778b
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_checksums.txt
'2.27.0':
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_386.tar.gz
linux_386: sha256:5139f84c5e4a51a3b29798797091c2b9f69ee0bf3ecacc30d69f7caf92606c86
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_amd64.tar.gz
linux_amd64: sha256:a3e2987e49ede4e90e0192f64c5e1480d6a1ee3196d51a4fcfbe0ccd0a627747
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_arm64.tar.gz
linux_arm64: sha256:75e9049bd5cea8084095b381bf21103bf8b609f989caeee20a47023b2fa1cbe9
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_armv6.tar.gz
linux_armv6: sha256:2289fa1537bbf424947e1643f4616fb1c6b7e011b43b25e2e72af1b1e4d74f97
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_macOS_amd64.tar.gz
macOS_amd64: sha256:de452c922f166f89f4c23908782c6fc5d3219bb118fdc4cccea7eed907733196
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_windows_386.zip
windows_386: sha256:c16b3c6a2eaa91f1adcc89237296ab3a0d272473d8a5509670beebef4d3aecd1
# https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_windows_amd64.zip
windows_amd64: sha256:271db54f3f9ff8f1e34839cf0c517b2957c1d76ec1e0d818ebae2cf530292ebb
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_checksums.txt
'2.28.0':
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_386.tar.gz
linux_386: sha256:3334b8745da5481c3609b72e0617927fda23af651f84badf868fe9139972bdc9
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_amd64.tar.gz
linux_amd64: sha256:532633d851557d1da80d59addcb3f7ba20ba0341c8990d32d13f4af73ebfb3f0
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_arm64.tar.gz
linux_arm64: sha256:89b0351d2421c10dd27e91d8aee13a97afe95039507a21a6c0a3a899e2ac1d9c
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_armv6.tar.gz
linux_armv6: sha256:b7337064cb59702e09251ef969326458229c894df65301dc758819cb39985d51
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_macOS_amd64.zip
macOS_amd64: sha256:1e50a63ceee4ecd5749184daaeab9f769ad39aa1f42af069a33760d694e4420f
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_macOS_arm64.zip
macOS_arm64: sha256:bc6ae4efbf2eebcbfa7db17207e72ae33519ec240ffcc19f81b858a94612b04c
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_windows_386.zip
windows_386: sha256:00dadecb4caf369705faa1f4cc244a1a5b5e477dea49d2a4aac991853891480a
# https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_windows_amd64.zip
windows_amd64: sha256:12c33a13c72300c54f1ac2c926d879cec8ed65dda778cf53f6cb20a4de1d1ad2
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_checksums.txt
'2.29.0':
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_386.tar.gz
linux_386: sha256:99c8b66f18b1d5e71950f2e04f8e41f466316179f838816d73c4c94fc632a7a7
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_amd64.tar.gz
linux_amd64: sha256:9fe05f43a11a7bf8eacf731422452d1997e6708d4160ef0efcb13c103320390e
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_arm64.tar.gz
linux_arm64: sha256:71aa963cf4eecc3cc638ad17050464410a92fb6f66a04b409997f4c63588ccb4
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_armv6.tar.gz
linux_armv6: sha256:193bc95e024a3e53a3d3850fc2e619ddc9ca1bf3de384abb0f15e68ff1aaefbd
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_macOS_amd64.zip
macOS_amd64: sha256:e116d0f9c310450482cdcd7f4d2d1c7c4cab8d4f025a340260ce3f15329c5145
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_macOS_arm64.zip
macOS_arm64: sha256:38ca9a355376abd1475362cf8b3cacf2a757198fe5fe70349cb1767666abacc6
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_windows_386.zip
windows_386: sha256:3d626044e442e59c951ad8571cdf6bf07199c905fc0eb1de15283cde8fae9ae2
# https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_windows_amd64.zip
windows_amd64: sha256:031eb343ebff6f8cc712d58d79267ee00b0c61b37d6698927161daae895044c6
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_checksums.txt
'2.30.0':
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_386.tar.gz
linux_386: sha256:b44c30f3662c27f60d64d420f4c8fe62d5670592de894faa245405c710a07e1c
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_amd64.tar.gz
linux_amd64: sha256:5aee45bd42a27f5be309373c326e45cbcc7f04591b1798581a3094af767225b7
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_arm64.tar.gz
linux_arm64: sha256:3ef741bcc1ae8bb975adb79a78e26ab7f18a246197f193aaa8cb5c3bdc373a3f
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_armv6.tar.gz
linux_armv6: sha256:472424e5739fb626921423f04cc30aed14605eb019ec860104351baf1a7307d4
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_macOS_amd64.zip
macOS_amd64: sha256:6b91c446586935de0e9df82da58309b2d1b83061cfcd4cc173124270f1277ca7
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_macOS_arm64.zip
macOS_arm64: sha256:32a71652367f3cf664894456e4c4f655faa95964d71cc3a449fbf64bdce1fff1
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_windows_386.zip
windows_386: sha256:6b8270ea266b4afac5ea24a3bce3694c824769198694c52262ecfcb750106470
# https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_windows_amd64.zip
windows_amd64: sha256:7d466686978e3c93e1a412229a77921288862cec183e94ad06cd36bfcd34ebaf
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_checksums.txt
'2.31.0':
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_386.tar.gz
linux_386: sha256:10a734127afeb4a5fc940d3023175130d3f432b14591eb8a2a24d8325c8ed803
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_amd64.tar.gz
linux_amd64: sha256:eec349e43803759d3d7a138d214ae983a3bebebd8e6dd0ec0ff1eea7bdd823e7
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_arm64.tar.gz
linux_arm64: sha256:8e704310972ecd4a51a7f92641501d8422923a4dfc07c76719ca42611dd36a23
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_armv6.tar.gz
linux_armv6: sha256:8ca0f926fa7c7090199f0e87c3d22e8167f4f2892c1b77dcf041ce50fd6423a0
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_macOS_amd64.zip
macOS_amd64: sha256:16f347ea9bf4b83a574acd7b4b7151915387a3660d76ff84b7cf59708a3c2972
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_macOS_arm64.zip
macOS_arm64: sha256:88ef39440f594a996a6245a8ad0986f28e38acb9725118e3780f3ca8a10c447e
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_windows_386.zip
windows_386: sha256:9569afb94ab08c3487f317393b75d3896009e9e06f7f5e92dd227358c9ea6002
# https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_windows_amd64.zip
windows_amd64: sha256:9b91adeb523c393be0e64786dc179ad17a1b588bd5067dd598f524fb2782c107
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_checksums.txt
'2.32.0':
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_386.tar.gz
linux_386: sha256:1e1691ec25c30fc2471bd0eb4646050bf4bb158a931bed6872191c70fa67178f
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_amd64.tar.gz
linux_amd64: sha256:2e306f118a46764bc1763bacc52e7b18eeca5aa6fd59d2b5fd260f0ef3cd87ae
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_arm64.tar.gz
linux_arm64: sha256:9eff1eb5d13a3fa858859bd2995077f8987a89d352548a3c116af0536f49afc0
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_armv6.tar.gz
linux_armv6: sha256:77fa90e418aae717b29f11ae591c89a6eafe8a4d7661133ba9e57a5bbebb843d
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_macOS_amd64.zip
macOS_amd64: sha256:e6dd7cb61338c6aab27dfc744bf74817f26a938e505a8e817316513ebf02eb57
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_macOS_arm64.zip
macOS_arm64: sha256:6df08a326a4c00e6d33f49c458402c8a3921fd71a2f3187ce77ddb6c452d73f0
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_windows_386.zip
windows_386: sha256:1d6b610d53bcdd20163efc2caa69513fe7c260756e4bed8c4db9bb160d39d9a2
# https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_windows_amd64.zip
windows_amd64: sha256:6aa2a15e0e5fcbe4663908964bde88277ee3678138e2fb099d0c8b68b0b62271
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_checksums.txt
'2.32.1':
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_386.tar.gz
linux_386: sha256:1c2d9e3f6c0094975c015f6533e74f3e228f99a7532aeb691593e5e90e1bd3ff
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_amd64.tar.gz
linux_amd64: sha256:5c9a70b6411cc9774f5f4e68f9227d5d55ca0bfbd00dfc6353081c9b705c8939
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_arm64.tar.gz
linux_arm64: sha256:78a934fa06ba9ffdf84f83a94e4da8ef2ecd6c2a037085d154050a90554e1060
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_armv6.tar.gz
linux_armv6: sha256:eba94fa78f3906beaa1e2171fbdaf07e58acdc72f4a27da9d95cfde9a6881ae8
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_macOS_amd64.zip
macOS_amd64: sha256:28a0836aac427f8159db6d39fe42062b185e6b4cdda90c7cea639981f2d77949
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_macOS_arm64.zip
macOS_arm64: sha256:9ccc6f8e43128523f16ecd547892c4d8e5b119237f160bf2e5a0aacd6bed7ac9
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_windows_386.zip
windows_386: sha256:f0f2aa2b07e6203d9cfe8629f3475b651d54f1965d12728ca699240620651205
# https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_windows_amd64.zip
windows_amd64: sha256:1cfea730ef7f7c0325fc59e929c165a4e2ef517a7d742faa7b8c2bdb075264bf
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_checksums.txt
'2.33.0':
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_386.tar.gz
linux_386: sha256:3578a512d0f091a23894a56e313b8f240efeb05eb369348d34ef65c37d20312e
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_amd64.tar.gz
linux_amd64: sha256:c46d0adae4dbd0589a62b6a1d822b84ca5184ee78d246d21d5c082ab9f38a04e
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_arm64.tar.gz
linux_arm64: sha256:ac8c84e853bcff301ab8fc05d334abebf196b300b870fb27afacf044d667def1
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_armv6.tar.gz
linux_armv6: sha256:6c5e3db21475d1c7cf09afd20a643e01edf95bd912f291d9f07147b3562eac1f
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_macOS_amd64.zip
macOS_amd64: sha256:821c982a0e14b36fd2a8ba311364d622c884a4f0c21a805606510882d385af08
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_macOS_arm64.zip
macOS_arm64: sha256:59f64b1c5528189c308ad9a69f19edf541f2bf3842cdbea2b124cf7b4f08c2be
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_windows_386.zip
windows_386: sha256:921be94017285dd9279ed4b7215222803133035516c7cb99c4d609917d9364c4
# https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_windows_amd64.zip
windows_amd64: sha256:b1a90fa45d44ddb010d2d2702ec2c81199a0818e628c17613f55dcde829e17ca
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_checksums.txt
'2.34.0':
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_386.tar.gz
linux_386: sha256:a88f6cce1ba3aff262634112d51b91bd8f03a5a47f3d4278c1374b6234856217
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_amd64.tar.gz
linux_amd64: sha256:056c45c510ca77ec7e492023e1aa79c078b679932b6202188b7f5abd914df911
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_arm64.tar.gz
linux_arm64: sha256:dc7e6ec5f69e7417daa02963bacb4046e40435cba34e35b5cb016531d9f3295e
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_armv6.tar.gz
linux_armv6: sha256:9ecd2f010dc582e235df179d69366a869091828c804ef94502a33e974177419f
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_macOS_amd64.zip
macOS_amd64: sha256:9d6cd7c3952bb9a1cdaeaf04c456c558f8510ffbdc93bb4b40a85013c638bfca
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_macOS_arm64.zip
macOS_arm64: sha256:be556ab2e24e6261c8d4f038aaaae4da59670826f016e0d5677e44cc59ae545c
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_windows_386.zip
windows_386: sha256:12f7158b604f06d1a2d9eb756d339f0d6d2b37821bd5f28d9f60fcc6caad9dc5
# https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_windows_amd64.zip
windows_amd64: sha256:9c775ac42e6548107cf859b15d3ad3e664eec93639e5c3cd7a84c6d98926d1dd
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_checksums.txt
'2.35.0':
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_386.tar.gz
linux_386: sha256:3479168f5bcea72bd329b9a49dbc6fab8c168f3474d2034c1c4af3d61860def6
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_amd64.tar.gz
linux_amd64: sha256:927614fbc6b391d136504ff2cc4b406f7082a2159ea51feb6f1db4fe6033feaa
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_arm64.tar.gz
linux_arm64: sha256:3fedcf9a034a6a8706794946b1af74bc203161aa51c40a646dc434b9814ef2c9
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_armv6.tar.gz
linux_armv6: sha256:d4ca282f80c1fc6694414946ca812fc186e9de0ed713ee4d767d04e8b6b11f6b
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_macOS_amd64.zip
macOS_amd64: sha256:6f8f3a4623db9cb1e334270c8e55ab52c1ff681bc25192a7c250783ceebd540d
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_macOS_arm64.zip
macOS_arm64: sha256:b8de47c2c31c747b5f595f44ea69c59e2a6c8d93a96329e852ab571c3f130c3c
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_windows_386.zip
windows_386: sha256:e028b7905d75b6754c84af65ec49f454dac23456e81e2aa3e7339cff3d30ebb1
# https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_windows_amd64.zip
windows_amd64: sha256:877851dea022b3000e7a831977ea8e91f1d47b2ab79d83ecdce2b90ab8f5d4c6
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_checksums.txt
'2.36.0':
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_linux_386.tar.gz
linux_386: sha256:1adaaca8d9a946d514bc16432a4b15ed3c2f8d79c79eb6f55241a1b7fe432b26
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_linux_amd64.tar.gz
linux_amd64: sha256:29ed6c04931e6ac8a5f5f383411d7828902fed22f08b0daf9c8ddb97a89d97ce
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_linux_arm64.tar.gz
linux_arm64: sha256:3cdbbe813c59fc61c84dc17e78efb93135231beb08e8cb0f2345de8d615a1660
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_linux_armv6.tar.gz
linux_armv6: sha256:3c3af63b8df09bab285ab847b1f4e73d331d768f8a4a3327188ea2f8b2cd2083
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_macOS_amd64.zip
macOS_amd64: sha256:b69714c8a5e2482feb873838db37b6debd0d955ae3a6bfddd6f737edcd95314e
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_macOS_arm64.zip
macOS_arm64: sha256:d4e53e8b2127f2ad3f5356e81ef27b50f1cc2e202ea18db4f69b4e9f77fd895f
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_windows_386.zip
windows_386: sha256:030224e5e233633de0c35ce74f2842635331ecb49b1080ee1ede294469a7dc29
# https://github.com/cli/cli/releases/download/v2.36.0/gh_2.36.0_windows_amd64.zip
windows_amd64: sha256:1419d3c782e7f568d467eb912c8e03a6c473f76d1dfac015404f2489c373a001
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_checksums.txt
'2.37.0':
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_386.tar.gz
linux_386: sha256:e87926c8444a436fbd5c03723ff23d0a6a89c01e7c9799feadc0142b744538f4
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_amd64.tar.gz
linux_amd64: sha256:a1d79712c20af6fe36e388e762bda60c3fc8fb4af2f0cff666143f2c7d3baa88
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_arm64.tar.gz
linux_arm64: sha256:ef10a152030456f9455f2a321f2d22cb2654e987f5a008731e4c49a4eb4c29c2
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_armv6.tar.gz
linux_armv6: sha256:0c7f8c6cf37acc75fa4366dbd89627f3c29615e7e22bb5dd83d4f20f32d49d41
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_macOS_amd64.zip
macOS_amd64: sha256:0eecb97c52a90f86bd4466a63610cd27e10ea9714b88ee4ee86fdeb1f000e974
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_macOS_arm64.zip
macOS_arm64: sha256:b198e750c164a85df371819c1f89c958c0eb4839af2cc07c8b8d03077d5a8255
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_windows_386.zip
windows_386: sha256:2cb537d5b40570ba9c6f7dc7eccb2bc949155a7b2cd6a79697f970d52768d0f2
# https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_windows_amd64.zip
windows_amd64: sha256:466cb9703d13cf55329ed7182d3b598cdabf10c642ef07c7d60700ac187ba1fc
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_checksums.txt
'2.38.0':
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_386.tar.gz
linux_386: sha256:c2c72d4a6307d4d4afd0f4894af85c4a30877400dfc659100b167e35eb7a1bbb
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_amd64.tar.gz
linux_amd64: sha256:c56b80a03c3b4216cd1ab63f6c7bfa4c356c67bce265fc067953bec10cdf0f97
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_arm64.tar.gz
linux_arm64: sha256:45b659115d5d969ace158e4f88b8e66b880d7d355203793e544d794ca31a4ba2
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_armv6.tar.gz
linux_armv6: sha256:ff69d5271d6c26d908de9235eae940716cfd9572eb1704da0099abf4a422a70f
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_macOS_amd64.zip
macOS_amd64: sha256:71ffe7a5d9068a49d63a7094e51f6ffccbebeebb4a2669ce39950ffb42ee86e1
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_macOS_arm64.zip
macOS_arm64: sha256:23e54cc6575c5f110f7a69fa34450524c8d43db76f523158c173b23f5e43f536
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_windows_386.zip
windows_386: sha256:4741a63f663f61ecd5cc2111199c86d4b5d042ed1fae89bbaf60f16f79c57162
# https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_windows_amd64.zip
windows_amd64: sha256:7b3e6f723ba3b92e7e9c4aa22e114a3d8b368119c9b37a2282fbb21742fa9ff1
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_checksums.txt
'2.39.1':
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_386.tar.gz
linux_386: sha256:892f97d5d2b42eb95dc37d1851725564ec26f4c3b7f96bfe6c76d58ed1e12fa8
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_amd64.tar.gz
linux_amd64: sha256:18a1bc97eb72305ff20e965d3c67aee7e1ac607fabc6251c7374226d8c41422b
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_arm64.tar.gz
linux_arm64: sha256:e29e51efae58693cab394b983771bc0c73b400e429dd1d7339fc62c8b257c74a
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_armv6.tar.gz
linux_armv6: sha256:71388fa95e9600bfc33b72df6037ba5cef2323c0b5aa3a20875c1a2551b2e8dc
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_macOS_amd64.zip
macOS_amd64: sha256:a604e54a840ade62c9cb81b85225cf6f6d9686f5b11399fc961a6b71c59851fb
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_macOS_arm64.zip
macOS_arm64: sha256:f854225778b7215480c442cd2e3eeec1a56d33876bbbad19daf557c1b00d6913
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_windows_386.zip
windows_386: sha256:5759423cccfef74880a0d65f4fe8235f169a54b5887e2c08cef91019a690fa62
# https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_windows_amd64.zip
windows_amd64: sha256:6b8fe1b9d18215f1eba40b020e4d28c6d91a4bdcd6239f4bd59f5abc1d05a26c
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_checksums.txt
'2.39.2':
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_386.tar.gz
linux_386: sha256:6022737d749b72280fcf5ff8da859f414fc7e6dccdfcae8767e379f3e3f9b94f
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_amd64.tar.gz
linux_amd64: sha256:460d270662f80b8314928ff80ac36db619b8bbac281a1331afd0d6e822f40426
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_arm64.tar.gz
linux_arm64: sha256:ea29ede50a8fdd82297bb1db528f0e7b5f0893e165222c3d85baeee3e98019f2
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_armv6.tar.gz
linux_armv6: sha256:eded31b0e5430259e15b8714ee94936894bfe03bb2dd8b3a38a62b3ac12db466
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_macOS_amd64.zip
macOS_amd64: sha256:8db25741e962ac6e8f8b43c65b3b3bf8f7cba0fe706ae5b60498cceaed751f4a
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_macOS_arm64.zip
macOS_arm64: sha256:f466649e60d38446b9700d2fb345280aa1d4c086e2918c2abc797b2742e813ca
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_windows_386.zip
windows_386: sha256:50daec42a9a97354a8dd351bcd7e2243f79a5e3e6483ace15685534cee3db1ac
# https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_windows_amd64.zip
windows_amd64: sha256:e57d3c0acafe21d2eb1e230f908898b4d48b24db979ac2f1eb510c4e2478efa6
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_checksums.txt
'2.40.0':
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_386.tar.gz
linux_386: sha256:c22122acd11781e7e2eb8fbd6aeec8df8432a015043cbbe9d2a4394ad22e6f85
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_amd64.tar.gz
linux_amd64: sha256:17f3c21f3f4c3b0175a9a0ee8f8e42e36f58e2713de81440ea9c0cb94c5a08a8
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_arm64.tar.gz
linux_arm64: sha256:2f850430f300b0cc25b1c9bcdf3fe51a0b9de577534d7ee7a0fb64b38bdfd288
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_armv6.tar.gz
linux_armv6: sha256:e659007fcb68e7b949ef53a32c402a4793c3af9980a3a3a6fc276edab9f28a2d
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_macOS_amd64.zip
macOS_amd64: sha256:2e194072f57d065f20e0f568d01b80c2a06f5edb036021a08f50f194abf9afc6
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_macOS_arm64.zip
macOS_arm64: sha256:c0de4ab634616e13fd0cbd51839f85407c18b16a1f04ceed2e60b4fdb7204627
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_windows_386.zip
windows_386: sha256:d33b3351a818bfb0f448b425e987744ede830f1b9bdeb0b912ba17fd688ae694
# https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_windows_amd64.zip
windows_amd64: sha256:6d27beeedf5d445ba7bdc92e3e85694c375ee558dca4d0c47ae37c5d2c42b071
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_checksums.txt
'2.40.1':
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_386.tar.gz
linux_386: sha256:9eaa3dd2a378b639fc1a662cf7cb0321af8a1b2db688fbd2085c9222b77d8105
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_amd64.tar.gz
linux_amd64: sha256:7f34ee83a7dd17addd1d029bc66ec06d91773a93172e3e1e30e0ec3a9f923fe2
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_arm64.tar.gz
linux_arm64: sha256:ba7bd980092eae0892e53c3a2829632bf4116ed7fbb48361b8d4566ea9e672dd
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_armv6.tar.gz
linux_armv6: sha256:cd64f0d65454536e7b1ac45231b319cbfd01e3ff68962403a7459f23933a6ef0
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_macOS_amd64.zip
macOS_amd64: sha256:759add6b7756538e025841696dce85394c0dbad48729eb2e27f5f988c5eb9acb
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_macOS_arm64.zip
macOS_arm64: sha256:c0b6721b38e39598834eebe6068fadfdd0b1c269c409e12183effcff7b5ebb69
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_windows_386.zip
windows_386: sha256:47a290b4302a6c638da0db12b4c22f0f75ed9151a51dd0effc48f3bc1965bf1e
# https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_windows_amd64.zip
windows_amd64: sha256:9c496dbb5781d4f796b5841cafdce5bbd962efd498f5117cd95790186fb1440b
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_checksums.txt
'2.42.1':
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_linux_386.tar.gz
linux_386: sha256:97b7a8ccbfc77f4dbde041572301917e0114df557701a9d0a490c922ae7399f3
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_linux_amd64.tar.gz
linux_amd64: sha256:c82c865545549131f284bf4df73c03c63971a87286fce5ab5d11c9dc0cee2cbb
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_linux_arm64.tar.gz
linux_arm64: sha256:e49887ecbc10ed9964965304d21dab786e2ebfc7ec7f22021e1ee747db433575
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_linux_armv6.tar.gz
linux_armv6: sha256:fd57734c176c8622cc071737709186c77bb650bb97583bc3234bcc7130dd0461
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_macOS_amd64.zip
macOS_amd64: sha256:206fbe6b8aa5c38279a4ca7dfedf7eda9042fc0bbec0ea08995b6819e9a8f1b9
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_macOS_arm64.zip
macOS_arm64: sha256:1a2e5433fc3713c0c1e160336c20d2d5242bb32d7654bec81fb6055b405f1fcb
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_windows_386.zip
windows_386: sha256:0ad0b4ea1d756e0de2332050fd12c1025808091be6afef3fd348ba55e0fbe52e
# https://github.com/cli/cli/releases/download/v2.42.1/gh_2.42.1_windows_amd64.zip
windows_amd64: sha256:babd138414977ab361f3ff79662c5bf761f0e302b8ba2243dba618d690a1d22b
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_checksums.txt
'2.43.1':
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_linux_386.tar.gz
linux_386: sha256:053d00454d99d6dddd69de1a3f72f8cfe1cac7676baee3759399dc579ebcaea6
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_linux_amd64.tar.gz
linux_amd64: sha256:0935fb1c783f65a0d43ebe4988dd117b27355704e230c386d9fd30774d729111
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_linux_arm64.tar.gz
linux_arm64: sha256:5e27f664970c5608f83707dbcf81245604bb5dd3b3dc2164f25e8143ea0a9b11
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_linux_armv6.tar.gz
linux_armv6: sha256:47e6757e79db4e660f8210c0cc8882c4d42bcccff598f035ea13f3035db6bacc
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_macOS_amd64.zip
macOS_amd64: sha256:53f58c94324fcae7e424e3cf7662d68025bf148350b83911846b330920083e56
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_macOS_arm64.zip
macOS_arm64: sha256:636b2c5e645c240ee0895f3a1d478469371ac114e68347957de41e4bfe50eb7d
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_windows_386.zip
windows_386: sha256:b895f7412afa4391b5a1a67f8fdd29f92735d18e9b708f3e6cb90e88f0d15b59
# https://github.com/cli/cli/releases/download/v2.43.1/gh_2.43.1_windows_amd64.zip
windows_amd64: sha256:b0d8185853996639b408208c6d8dd1501aebf490e2c6b08694182328bac0c643
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_checksums.txt
'2.44.1':
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_linux_386.tar.gz
linux_386: sha256:96395ee7b79ce5054ecc1f42dc907d7d34d2e866cf6a65a5a51dcbc828310b50
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_linux_amd64.tar.gz
linux_amd64: sha256:f11eefb646768e3f53e2185f6d3b01b4cb02112c2c60e65a4b5875150287ff97
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_linux_arm64.tar.gz
linux_arm64: sha256:0f9f7b04514d8accc9e560ede4ec340333b262735cfdbe8d8d36b55d78dac732
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_linux_armv6.tar.gz
linux_armv6: sha256:e50452bd849204e81856e3731c327d0c621e5a2215c59bb3223b4758726aeb20
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_macOS_amd64.zip
macOS_amd64: sha256:1c545505b5b88feaffeba00b7284ccac3f2002b67461b1246eaec827eb07c31b
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_macOS_arm64.zip
macOS_arm64: sha256:039ead1fca8e2c24838dcef269e41c936e26e71c515188a4ab666faae2e7f3ef
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_windows_386.zip
windows_386: sha256:9f1d6629c7b0d95e37213af0e2736ca61aebfaf78dd357708a23e388c081e8c9
# https://github.com/cli/cli/releases/download/v2.44.1/gh_2.44.1_windows_amd64.zip
windows_amd64: sha256:5a19a334d5032cfcb01e71e418c5e355104f7afd9129daf8939b729ffa46aa08
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_checksums.txt
'2.45.0':
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_linux_386.tar.gz
linux_386: sha256:d9930d5a75f3622aff88216a2fd9e1662331e679dd3ed1a0b2b7a2bbc7c5d8e0
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_linux_amd64.tar.gz
linux_amd64: sha256:79e89a14af6fc69163aee00e764e86d5809d0c6c77e6f229aebe7a4ed115ee67
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_linux_arm64.tar.gz
linux_arm64: sha256:bb62c95ecc17a8557a847483ce671bff9909f107ad1961b4efafcd521721c213
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_linux_armv6.tar.gz
linux_armv6: sha256:3e0d974a921814a355011fc186de2efca107f246ae6630152cdbb35ffaa04b41
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_macOS_amd64.zip
macOS_amd64: sha256:82bea89eea5ddfcd5f88c53857fc2220ee361e0b65629f153d10695971a44195
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_macOS_arm64.zip
macOS_arm64: sha256:a0423acd5954932a817d531a8160b67cf0456ea6c9e68c11c054c19ea7a6714b
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_windows_386.zip
windows_386: sha256:dab2b813b11ec6477d3ba9650258f6f3d53e206dbebc8d9983d5c551cbb076f0
# https://github.com/cli/cli/releases/download/v2.45.0/gh_2.45.0_windows_amd64.zip
windows_amd64: sha256:fa2009234c0c879529fd46137a54498d580c77700b03d743ad84ae20b280b947
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_checksums.txt
'2.46.0':
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_linux_386.tar.gz
linux_386: sha256:409946c25368d546d6456832b4a2bbb9847e08dfb0b894f3c4d4f8e545f60e68
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_linux_amd64.tar.gz
linux_amd64: sha256:c671d450d7c0e95c84fbc6996591fc851d396848acd53e589ee388031cee9330
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_linux_arm64.tar.gz
linux_arm64: sha256:0b4d23c60872d3e43b94bbcf84ffd69719dc8f9d85d685deb0907774caea7b10
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_linux_armv6.tar.gz
linux_armv6: sha256:fd3f34e8b7e54661f9ed224f62fd2c1dea481b9efd722107edf34dd0a88f7c08
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_macOS_amd64.zip
macOS_amd64: sha256:ea893495249ec34b9e14d75beae8e6742856af9e8c67dacab47063cb6e8518f8
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_macOS_arm64.zip
macOS_arm64: sha256:2540cf5281c93089e5e5d9fc502b08fb109db763f7810f048627b39ff0a855c5
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_windows_386.zip
windows_386: sha256:37ac3715a010c1a2001098ce718f8d0c203275c4d0a8d99f448966eee07c4c6f
# https://github.com/cli/cli/releases/download/v2.46.0/gh_2.46.0_windows_amd64.zip
windows_amd64: sha256:d623c4b209e8c1457c9a585676200918069d7b506d45c2456bfb8cd8b34d152e
# https://github.com/cli/cli/releases/download/v2.47.0/gh_2.47.0_checksums.txt
'2.47.0':
# https://github.com/cli/cli/releases/download/v2.47.0/gh_2.47.0_linux_386.tar.gz
linux_386: sha256:5903455ae7b5094bfd3a72bb331d077e3e046f0f4601e284a57f7b1ab3ae8201
# https://github.com/cli/cli/releases/download/v2.47.0/gh_2.47.0_linux_amd64.tar.gz