-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gh.yaml
1716 lines (1716 loc) · 101 KB
/
gh.yaml
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
name: gh
description: GitHub command-line client
homepage: https://cli.github.com
repository: https://github.com/cli/cli
releases:
2.11.3:
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.11.3/gh_2.11.3_linux_amd64.tar.gz
sha256: 51311dc3d2e48d02655fe4943ea4f156171f5baaeb49ecb7284802b62cacf924
2.12.0:
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.12.0/gh_2.12.0_linux_amd64.tar.gz
sha256: 6cf8eb6368754ff4787219de35ec8c6761c6eb65a7d6243e02c044ca3da51b94
2.12.1:
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_amd64.tar.gz
sha256: 359ff9d759b67e174214098144a530a8afc4b0c9d738cd07c83ac84390cdc988
2.13.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_arm64.tar.gz
sha256: ab2b391fc40bf01b7e13577569fbdcfafb8455090e1d8d79bbb77646d4872b5a
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_amd64.tar.gz
sha256: 9e833e02428cd49e0af73bc7dc4cafa329fe3ecba1bfe92f0859bf5b11916401
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_macOS_amd64.tar.gz
sha256: 54612aaf8b8c35da5eac168d7ae5ee6bf8ed6bcfcadc612a6c188fe42308cac4
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_windows_amd64.zip
sha256: 8932b0c9ee45dfbee5a734095def57076f05cf9bae053978979ea74639611564
2.14.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_linux_arm64.tar.gz
sha256: ddfe5cceb508faab19192f04b5d593a13bc6e00c978a5f543b00677d4f676c0c
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_linux_386.tar.gz
sha256: 38392031bb58c16093f5dc3bd48de339e089241416ff11a8da7cfccebaf1ca65
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_windows_386.zip
sha256: 39101f75060cf78f039485467834257d0f15293736ce955c99360298a80661a0
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_linux_amd64.tar.gz
sha256: 4f4b044c6583e66147acbfab412b4cd6b98b2559f30d2876b88a3755e26dcb44
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_macOS_amd64.tar.gz
sha256: 1f1da59eca2d59a44f53adfbe12d9d062ee9487e208eccb6799c42515be49854
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.0/gh_2.14.0_windows_amd64.zip
sha256: cd38abaad1061318ec6d64a4b76325790b943f6368b3d3052477f925e7f3b374
2.14.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_linux_arm64.tar.gz
sha256: 8ddbe9f336c3b0a1cc1c8b57e5aa29b400c873b743b502b2d1195b8f01d8b8e2
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_linux_386.tar.gz
sha256: 6818569dc9a8aba92a79652979f32ed58a9fb8ae6cf3c5acbb78711b7212bbad
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_windows_386.zip
sha256: 1f5180d72ea53ff853cfd96a06eedaa1bccee6a0033cd04d0c8fbb6d8e397d8a
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_linux_amd64.tar.gz
sha256: 21539943893f2edbefc5bf7bcdd5c1060038ef9e0b052a68d52dce2f55f9818e
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_macOS_amd64.tar.gz
sha256: bdc2ecdb34818db2d1882b7fa70107747f187a3b6fe8fb0d5ccfeb3ad198a11a
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.1/gh_2.14.1_windows_amd64.zip
sha256: 26dda6f22be5abbaff0bf27cff6b81f8b1a57bb0e3f97d63a502d002f7fb92a7
2.14.3:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_arm64.tar.gz
sha256: 27f1fcd43a47d045fb71f93e7768c1262ac5b5ca8f42e4f857dab61c3f55330a
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_386.tar.gz
sha256: 7a7d4e208b49c5af3211c619d7e7df927219799994390d7cd3e0e453c2e71326
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_windows_386.zip
sha256: e8495cc928a9d5c8811c200c69e090f82a8da8a5d688fd8f24595110ace5f51d
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_linux_amd64.tar.gz
sha256: 95fe2e93bbd7a9f02d5b22cee01a53ab6d581fda8fa170364b668d142840ef58
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_macOS_amd64.tar.gz
sha256: 99eb7003c004efda33506c03d2220c60e392ea89260945df548c60f28a6c129a
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.3/gh_2.14.3_windows_amd64.zip
sha256: bfe2b103ba79f574805a4cbddbc728e1fd0953799e1c40df5baa2f08369351be
2.14.4:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_arm64.tar.gz
sha256: c9dfac4764b817e5638026bd1a6e17c35e42933df6c09c8f47e19f661ade4b00
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_386.tar.gz
sha256: bbbeb60c6320b2ec03b932567a4249f56ff4cc641989121a946dfb7c65be399d
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_windows_386.zip
sha256: e5d98538fb45db164d80464e7936b48b7a4e374d983bcc36a0fdd0eea2cce881
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_linux_amd64.tar.gz
sha256: 673a3adff9a847298e39c4593877194198229c12a9a4f4333765e58de230ccb0
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_macOS_amd64.tar.gz
sha256: 2b79356ab25fb793e7cdf713e68e74bf23a838ad1ac1560e5f7743a02f9db98a
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.4/gh_2.14.4_windows_amd64.zip
sha256: 09fbc2463066fbded5148878766d8c1bf6a91d726eeb7ffff182054564610b3c
2.14.6:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_linux_arm64.tar.gz
sha256: f78d6b09a9a2a0e89deb5d01550b345bbeb1f4d3251d2c948e4608abab6d52f9
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_linux_386.tar.gz
sha256: d15eae50bf0afa090b85ee2385cde1deb54590020bbcaa71666cc54f2accf442
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_windows_386.zip
sha256: e97c02d734ac97822a3c3c29a766a9e2de021d2c84c77498d76ebf26e16a8656
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_linux_amd64.tar.gz
sha256: de09e52c6706d144b36e704ab573a84e59351e5788b2830001cd1ff5f5a95fc1
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_macOS_amd64.tar.gz
sha256: afb99764aea136cf857c89cde4f213d18a371c04be13e55db7d1ec06b2ca1641
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.6/gh_2.14.6_windows_amd64.zip
sha256: 6b117a719d0c977c71b37f8e03e857a22c04bd127f4da9dbc7de6a42c2060dad
2.14.7:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_arm64.tar.gz
sha256: ccb6e32c5830996abe8383531e3175c68bb895745bab7914ac5fe53c26b69c94
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_386.tar.gz
sha256: b516d3239612e14681f31dbcc632704f9975b4b625906f23f1aff956835dd088
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_windows_386.zip
sha256: 9c55ebcd2388c8a83979dca4ebe0f4214e0a48ee405a03dd3b647378c273e8a3
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_amd64.tar.gz
sha256: d174d0057b72ad0427d3225225d50d4dffaa61f3c000deeaf96248ae49deb2be
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_macOS_amd64.tar.gz
sha256: 0c74870d6d4844915d5fe6263322893e7e01eaf07cf3084f1630bedd36c62491
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_windows_amd64.zip
sha256: f28af85dce3319ef8049dee0953ec3421dc747731e4849d6c4de9d54c2e18d71
2.15.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_arm64.tar.gz
sha256: 4d88daca01db5c9efb5815e297cd3f8ee55c928eda7fa0cfe3f1dfae6d1cc8e5
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_386.tar.gz
sha256: 3505a547c402f4d079e9381cf0ceef096653d26f2e1388ab0628cf776c1cd6a1
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_windows_386.zip
sha256: fc6fcfe0f569ed35881a3ae45e756de02d85359309f32adea4d713d4b5030c9e
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_linux_amd64.tar.gz
sha256: c1ddab00cc406c34f17f40e3969e9d6690606dec0df564c5d533e5020598323d
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_macOS_amd64.tar.gz
sha256: 396972e1c340624879922cd0d7f553f9f9729a14febc56505ebea96713d89e34
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.15.0/gh_2.15.0_windows_amd64.zip
sha256: a4a49ad59bdd79be00375ab7426d3cb15bdd7bcdc50b0df7ef1f4bdc96315dc2
2.16.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_linux_arm64.tar.gz
sha256: 04f0f599dfdc9c76f941f80a6353fff1bedfe842d7d18ec26d69d07e30c832c6
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_linux_386.tar.gz
sha256: 7d19a5bd59f0046c03b3456d1e41a51ee93f9fdd5647b25b7313530071abb5ff
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_windows_386.zip
sha256: bb952c0f55d8734019894b447994ea8d2b6e98f78e133b8a57dafb6a3bbd089f
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_linux_amd64.tar.gz
sha256: 936514eab0780d17372e443f4469585fbe25e5f890d3cf293f4673a2b4e90146
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_macOS_amd64.tar.gz
sha256: 1d3bebc9b4a25aee834326e01ff086af06963bb55952ff4bd362e57c1da60b77
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.16.0/gh_2.16.0_windows_amd64.zip
sha256: 94819b330a2cc5514bd33dcd8aedaee20a2bc15c89861a87637ce11906a44fd3
2.16.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_linux_arm64.tar.gz
sha256: 6aacaf0872176f3eb412eec844af0477320ce43181ad7322230e84937feca7e6
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_linux_386.tar.gz
sha256: f32e93e47acdb1a3d0e4a261617dae0b168dc92f6a77e27832536504de872250
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_windows_386.zip
sha256: 00b73a063934a1a8a8a90cec3cc22d639295d8e511f0169cbbb1374b436d61ff
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_linux_amd64.tar.gz
sha256: 1dbafd8139e2ddf64f0c86a9e85fe89d843b904a6bae9eaf1b0127111bafa478
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_macOS_amd64.tar.gz
sha256: 07e48e2155ade53801d86380c7303ccddfa9dbb96e0ae326e94b4a171d1fbc5b
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_windows_amd64.zip
sha256: 3019714873838be44e57cde11099574665d70abbcfbc06c0377b3c0dbdcf7ff4
2.17.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_arm64.tar.gz
sha256: d373e305512e53145df7064a0253df696fe17f9ec71804311239f3e2c9e19999
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_386.tar.gz
sha256: ed2ed654e1afb92e5292a43213e17ecb0fe0ec50c19fe69f0d185316a17d39fa
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_windows_386.zip
sha256: d3b06f291551ce0357e08334d8ba72810a552b593329e3c0dd3489f51a8712a3
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_amd64.tar.gz
sha256: c6ce28981a1fb9acb13ee091b5f3de8eb244a67dc99aff1d106985c1e94c72c6
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_macOS_amd64.tar.gz
sha256: 3516a4d84f7b69ea5752ca2416895a2705910af3ed6815502af789000fc7e963
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_windows_amd64.zip
sha256: 96d4e523636446b796b28f069332b6f8ea9a0950c6ef43617203cc5ac5af0d84
2.18.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_arm64.tar.gz
sha256: 83cc6009eb3bd33c4aebe8f642acfc1283c5d1aa014d084ed5a806cf402ec556
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_386.tar.gz
sha256: fd374de8ead214c2c590c8fb365db99200d246b41d8bcb27cde50deacf16864c
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_windows_386.zip
sha256: edf6c1ac84d9fc7813e6e5364036bf2dc087d1394161aecdef68ae142ae7c261
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_linux_amd64.tar.gz
sha256: 6b091b0b21ee8b0ec257920968905dc065505f5718e5a7de1e9d287320869ef8
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_macOS_amd64.tar.gz
sha256: bd541bba4d078f8cd5d824db0d2333786e788202469f977c4d71aa76466dbabf
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.18.0/gh_2.18.0_windows_amd64.zip
sha256: c66037cb69db4457d6ea87859e193085d4d0f4a924238aedd452fed6ea927036
2.18.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_linux_arm64.tar.gz
sha256: 712687b76b17b69d8117317e3448c3a4ff83af70e1e5bd324e51e0d5bc4a8a1b
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_linux_386.tar.gz
sha256: 52be0cf2f04e63f80cba2a7481e93322f5f08785096c3c9a44ed1e77982b69e8
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_windows_386.zip
sha256: f5bb70fcad11f848c69eb0ddc1d66dd5fb32f0aee855e85843edad7c07b09e8a
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_linux_amd64.tar.gz
sha256: d721dfd1c3f8d5807565ab4df518eacbba7dfcd092c5a7f6adf7f9f0bf31a22f
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_macOS_amd64.tar.gz
sha256: e60b412b87a607e638a6ae84cd1adf39d52a6c129fbbfa68a8b6435e62a41c5e
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.18.1/gh_2.18.1_windows_amd64.zip
sha256: 0b2dc1cab81277532a7b893697d571a51716b3b28fab5a5f46c14dca12638e89
2.19.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_arm64.tar.gz
sha256: a37ad60126cdee164a2ecbeb25f6c48615c37c7291c7e1fb815b145ae6198d74
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_386.tar.gz
sha256: 45f8524fc46482f3056b40cd36b3c3aeea62917a8a26bd47f3781e515402c420
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_windows_386.zip
sha256: dcfe6cc60bcf57a8519a68b8362ecddaa51d82919cd8ed9394124847447f0e37
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_linux_amd64.tar.gz
sha256: b1d062f1c0d44465e4f9f12521e93e9b3b650d3876eb157acf875347b971f4d8
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_macOS_amd64.tar.gz
sha256: a37f1e522ba71c145d64a07ba116b88e8d72b3dbb4aea53549cd7dd1c2b129e7
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.19.0/gh_2.19.0_windows_amd64.zip
sha256: a896463430e9d96dce3453871df50a87090d069b4f3578d1588a33690e0800f8
2.20.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_arm64.tar.gz
sha256: 98a8b14086e7193ea210efc76854af0a69176c4cbf029fb430c81575b715cd6d
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_386.tar.gz
sha256: 36858e1ea7fb33d122bc7db929899467eb416cccf0339d7fa0a95abac8b510b4
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_windows_386.zip
sha256: 84c07917bfdac55ef17bd2b4f24c7483fd0fe8aee8ae1f4185d8187b524260f4
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_linux_amd64.tar.gz
sha256: e942ed4d378e269ce1376755c2116a695f43efb503ddb5986655e58992c06b9e
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_macOS_amd64.tar.gz
sha256: ced805ffa8d93221f8f809175168c9d363a24c4058f601e1c90969cbebc7220f
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.20.0/gh_2.20.0_windows_amd64.zip
sha256: adebeedcd5d0839d4b41804208adbbbd5dd5796c3e486fbecb8c8ef602757b26
2.20.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_linux_arm64.tar.gz
sha256: 6f46154695b07c7f9d19c284a4366026cbba5bd7764986a832a7ec345b91b433
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_windows_arm64.zip
sha256: e5da6078c1f20c4da7bef35ea91a9e4fdf635e445ed12979b349777d665ceea0
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_linux_386.tar.gz
sha256: 65626e272e4f9b1872765d01096dd3c39f145f67c9a167c104452e9b2de8e2b7
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_windows_386.zip
sha256: 3ba21dc6dc37e66c93261ac2358f73a291a599b97076d71a62b4e9eab29f8689
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_linux_amd64.tar.gz
sha256: 7f771098c1e61faa29e3869cf405c4c9ddfda6a2ab527d16254183e504c94c34
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_macOS_amd64.tar.gz
sha256: ad31063cc858abcd08bd3a85b0f4da1fc0a30c14d515ced883e810866a01ce1b
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.20.1/gh_2.20.1_windows_amd64.zip
sha256: db794cbc46f8ac354f9041cfda2e351f5723924c881be1d5ffff7fe3cc012e0e
2.20.2:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_arm64.tar.gz
sha256: c9aaa99fd4496be714738620931559f5bab3edc343ea87bbb070d97a1a780554
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_windows_arm64.zip
sha256: 9849951b5d69cdee4871e0cc3037b4cb0217fcc2b629a60a04011ef678109e0e
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_386.tar.gz
sha256: ab7887def12a164eb0527fea00681df73453c29d1406f51ff1e82f67e7393db1
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_windows_386.zip
sha256: d18b329c351036bb18a496741812206b3d9f353b59c1a816df7952a38f39f0a0
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_amd64.tar.gz
sha256: 3bc7cd3b2fd9082218b8246595673f55badb351db1b9e627eec121beb8b26450
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_macOS_amd64.tar.gz
sha256: 24838100d88b16fef271c562db5d14e3d291b61f1a99b39cb1edd3d5223a33e8
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_windows_amd64.zip
sha256: e7cba4e2e7a5fe719879a8a507f9bb205101560a945bdc21e2283f67ebb0a4fe
2.21.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_linux_arm64.tar.gz
sha256: e4765ee4ff1f28796f2cc5f6f0dea5c1ecae3241bf27182553622eee241020b1
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_windows_arm64.zip
sha256: 4f7d47bebf67c7731237dfd75c197d9a6313e5c8c272ffcc43b4d1f1c9035744
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_linux_386.tar.gz
sha256: 114d26df27b079ad36d46fe1cc01017336c46c46c062a5b1e7a7bde5b74f88da
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_windows_386.zip
sha256: c1626d9de803fab3e39592251ed569b30f7a1b0a4df2734d02c3671c3225bc18
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_linux_amd64.tar.gz
sha256: 20d435429a36911071288efa20d061374b1d1355f7adec1140b35a806145f440
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_macOS_amd64.tar.gz
sha256: 17ef9ac26d62b71405ec8c8aa3bb3993bd36e6078985d2ca6e7344e26eb71c04
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.0/gh_2.21.0_windows_amd64.zip
sha256: 0db60e4786e0557678fd685aadeb07f6273d4fe0967386e32d58a4826bf88611
2.21.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_arm64.tar.gz
sha256: 597447f94c07d4680fba787137fd1354ee9f963366a712e5d718aa24cd8f9bd3
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_windows_arm64.zip
sha256: 79674a5aa6b0e69095c1a69d6d84a9a9c9fb5ea1384bc3e3f6c084de6f97d410
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_386.tar.gz
sha256: 562d304de4e28029159fd805c755c2f7f204d03027bd65ea4ca02bce58e24c2d
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_windows_386.zip
sha256: 6e18a591d9d11502a7fb97659ba80412f05d87b28ca9f045af420601d9f1101c
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_linux_amd64.tar.gz
sha256: 0c0ab559721d2ff05df9d64fcdaca4f8f0b76d177832379116bd5c4d032fea88
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_macOS_amd64.tar.gz
sha256: 94ee037c618e865107c197ed581c32981d3f8678f231525f0ebdc5962d2914be
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.1/gh_2.21.1_windows_amd64.zip
sha256: e06aff75308d6cef653092eb39a3fcfad5cb8fab6eba9089c21bc05ff137c900
2.21.2:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_arm64.tar.gz
sha256: fc341a2672d9444ed963530cf4ab28a9590ae07b644ce0de52372b3477535b01
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_windows_arm64.zip
sha256: c33c46e4e4da2cfb3b6d54fcc57380e323a7f4effc2dd7418eef14866927067a
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_386.tar.gz
sha256: 35f86cf39f1f7b98a8342a4b5d8c1d0955e41362cb39423b4243edeb6e911622
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_windows_386.zip
sha256: cd4ab8dc98fc92aea498d9cffef84c8ec872293b2d356ba08b226edd18cdc80d
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_linux_amd64.tar.gz
sha256: 6b3e56ee3253795d9c48e019cfd7b8dfc03b28073a411d1f527f5021764f63cb
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_macOS_amd64.tar.gz
sha256: 3187174428dfb73b712f50b550e6a148f3f0ad4b2dbdf352519b159652ed9f50
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.21.2/gh_2.21.2_windows_amd64.zip
sha256: f6e4aead0cd85cb50f811f4a3497f288f52a013589b48e684ec617510463580f
2.22.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_arm64.tar.gz
sha256: 33d36e860fecefc3441faadaf91b993899dfc0d1e6ede458c83bafe906d8ae15
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_windows_arm64.zip
sha256: dd44b889250248a2ae8d73ca9a8b6535a1ed687413c0f2588eec9aed00d891d7
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_386.tar.gz
sha256: cf485d2c10ce0551d686611fe6ff0d628afb14f33f38e62fa461b2e96e91135c
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_windows_386.zip
sha256: 26f7e81b6b5d4e62ea15ca6edc8c889259b9a1a551376b5b8140e3c2a1980e37
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_linux_amd64.tar.gz
sha256: 065d78c51f4e400c1dfe4e3cdc14832ff8d5204926a485f5ae06d52f411eec04
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_macOS_amd64.tar.gz
sha256: f69c0073ee16adaf14d3537a8e439c0bbd3c1d581210d363d902a682cd8f54d6
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.22.0/gh_2.22.0_windows_amd64.zip
sha256: 39fdfe5a03ab40bf98e1376e5ac44ea5b6227f1562f8f1632b6d91700077e0ac
2.22.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_arm64.tar.gz
sha256: 9122024da9fe47e15c718dbd8a57c07f9750e6312ad91b405d835b0dd44f746d
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_windows_arm64.zip
sha256: b74185710809558bc12d6f1c7df6460bc928506732a528502e8b273e67e16141
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_386.tar.gz
sha256: 81c2e6b7ab316460bb5d72ab5605fda5e481b3a6162d0425dd1837ebee3077c6
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_windows_386.zip
sha256: c80a1d30e6bae37661c4368f7a375e0f0be520cc1741254fa752ffccae0155f5
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_linux_amd64.tar.gz
sha256: 76f7e18bdad5ddfdfcab40fce86c8d6f9fb27f9d29c1287cdf71e0d6b45ba84b
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_macOS_amd64.tar.gz
sha256: a9af43a3e55e4460388d46c372a9e94def67c17ae700af11e5084dea30846d41
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.22.1/gh_2.22.1_windows_amd64.zip
sha256: b51fdf145f472a63b4dbcb05b5eac843abaefbbb73aeaab9a67cadef9c8f22b1
2.23.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_arm64.tar.gz
sha256: 2f3b615a27bf495402cd612526ebab123d0b0eb70262447ec01e357d89981d39
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_windows_arm64.zip
sha256: b9f99879d56f79109aefabaa3b28730f86f537018143eab193c57bc2f9804e24
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_386.tar.gz
sha256: 46edd84d21b69b367c67dbc41e42843dd1e0ef5f1706200e91c075a6145a3da5
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_windows_386.zip
sha256: d007d515c83698b349952a9d21ff129e7e7abf0370c4062f06a1c18f4ee7d47a
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_linux_amd64.tar.gz
sha256: 774c4ab16e962f851664162e4d5ebe6fe2a7b8143afaf1a2ebbfd115f0517da0
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_macOS_amd64.tar.gz
sha256: b0807d5f0dafcfa8fa2c911beb63cf3ffbc6958a282fcc98545dc9d9070fe4b6
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.23.0/gh_2.23.0_windows_amd64.zip
sha256: c455548ea4139ae885dcda0ce2277cdfe4236d355bb145dc7590b2580eeffee4
2.24.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_linux_arm64.tar.gz
sha256: 5f166b082bdac23ff39c197ec3975e43fa94defc98ae7a83fd72c016924e2cc6
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_macOS_arm64.tar.gz
sha256: 11fa295b49787902172260d6f12d757057ebd631a27fc5b195b3da55f04e660b
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_windows_arm64.zip
sha256: fb1bbab771d980d103bb9ef1f7d27d8445467f5af5e606abafbac25aab034a1f
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_linux_386.tar.gz
sha256: 0b5ba20dd3a4556b277e79e41294339ec0c029f05958197e589677e6702bc3be
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_windows_386.zip
sha256: 39f45ab4cafbc9c616a38ff02141d8b6b75c9cbe2254eebdaab498b35b6db9fb
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_linux_amd64.tar.gz
sha256: c15008b4b691a28dd4201ec78f53d20e85fe633eaf0772d2390ca6b7fabced4c
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_macOS_amd64.tar.gz
sha256: a0c5b54bc347bfad43da6779140245910c7e55dd783ba743256f661f97d30acd
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.24.1/gh_2.24.1_windows_amd64.zip
sha256: 8fd4396621f1259da9a8421e0d539277fd3978f71798d65c67ed52256b79f3a5
2.24.3:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_linux_arm64.tar.gz
sha256: 0511fd91aabf4861ade97c742607ae2ae0231b8fd351c575a3662459a1edbfdb
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_macOS_arm64.tar.gz
sha256: 85e002ac12d2621bb09e6b1e5ca4d277dcaa452eb527a8ffb36ae4b0e7c25c28
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_windows_arm64.zip
sha256: 4baa2a7467af15c7caf5355bd1716e073f6d64baa9e53f271fa80cbe4e35b718
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_linux_386.tar.gz
sha256: e660c0a26919621fdc73b8d6fbca71c3339ba760f3477eb743971a95533f4da7
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_windows_386.zip
sha256: ca6c962b116612d4240a81334a9a33c010ce169f797bb8f9517e2a20e674fceb
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_linux_amd64.tar.gz
sha256: f09fa5fc8432dddae8023f63a277023124a80e8b2e190126ee6134122d2107a7
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_macOS_amd64.tar.gz
sha256: 5a1e6a3266e7e9ebf13da7f74ce88cc4eeb79a513aaca1cedc4a0bc22b206e6e
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.24.3/gh_2.24.3_windows_amd64.zip
sha256: 483108bdf897ba2795ca6f32d03e395cff8db95a98eda120ed0ebb10263f1f37
2.25.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_arm64.tar.gz
sha256: d4417c96f67314a963c40a312b68da7a616b4a5d5450b22b5aae99b24ea5dc70
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_macOS_arm64.tar.gz
sha256: e18f423f9983f84f011bebf9dea3b3bcd67cc79ef419040316cba35595bdb4b4
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_windows_arm64.zip
sha256: 2801982024d3ade3e552caffaae95a480ce8a8deccfafe166aad66e18138ec2b
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_386.tar.gz
sha256: 6302a378473c6cfde14fb0431aa925beb1c890f166cfb95febc8c344e915475c
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_windows_386.zip
sha256: 34f3bd1b378c08579e88729594178d4019e376943a473b6f0b9bb078754f6a68
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_linux_amd64.tar.gz
sha256: 869e780f9391804c1f9d355f6f7777931ef61447ca50c75433a5942f484e61d1
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_macOS_amd64.tar.gz
sha256: 414f5766a50b95ec73fcff17af6dc5c354b44d7f041370fea9de8f91990cc419
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.25.1/gh_2.25.1_windows_amd64.zip
sha256: 33be468155dabc1990e984eb9cb9e134c50cfe1c0bbeab92643355a8ea04e162
2.26.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_arm64.tar.gz
sha256: 3378a02d99576b25401688b0fdf11681df7d5dc2bb43aa911a40104b57c783da
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_macOS_arm64.tar.gz
sha256: f8769953b9e46c2d2a9dd4fc999c729a747ec7944ca5740c8b4d013c6de3a1a8
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_windows_arm64.zip
sha256: 55863399d5130f0e9501bcf7bf7d9a3f90f63a67052618bf123134a21b4216dd
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_386.tar.gz
sha256: 3dfd2a887432b1af74ef69d1040648dbbc22548963d67547fbdb22fed64e4170
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_windows_386.zip
sha256: 282d9d2ddba652f5f673354fb6b982097aa052d8aeb6e226a6e051995a1ee73c
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_linux_amd64.tar.gz
sha256: 4e1f98c10eb0af2c3bfe6849c10328a2a2446a9ff4294db0dfdb20b7d16eaecc
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_macOS_amd64.tar.gz
sha256: ef398ece1f31d033df6374458f7a87500ccdbdc9964170db04b6a5f707632417
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.26.1/gh_2.26.1_windows_amd64.zip
sha256: eb921ad9a452a1b584bf586bd7a154748f8912234ccfb5868ee9b96faeca778b
2.27.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_arm64.tar.gz
sha256: 75e9049bd5cea8084095b381bf21103bf8b609f989caeee20a47023b2fa1cbe9
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_macOS_arm64.tar.gz
sha256: 5a3754c34da645b61d58d38315206607182395d1ce3cca3114068d61441303bd
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_windows_arm64.zip
sha256: 9c69f973d0d89a08a09a7cdc8ad4c071945fbba47908b26326c64338e86a6300
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_386.tar.gz
sha256: 5139f84c5e4a51a3b29798797091c2b9f69ee0bf3ecacc30d69f7caf92606c86
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_windows_386.zip
sha256: c16b3c6a2eaa91f1adcc89237296ab3a0d272473d8a5509670beebef4d3aecd1
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_linux_amd64.tar.gz
sha256: a3e2987e49ede4e90e0192f64c5e1480d6a1ee3196d51a4fcfbe0ccd0a627747
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_macOS_amd64.tar.gz
sha256: de452c922f166f89f4c23908782c6fc5d3219bb118fdc4cccea7eed907733196
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.27.0/gh_2.27.0_windows_amd64.zip
sha256: 271db54f3f9ff8f1e34839cf0c517b2957c1d76ec1e0d818ebae2cf530292ebb
2.28.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_arm64.tar.gz
sha256: 89b0351d2421c10dd27e91d8aee13a97afe95039507a21a6c0a3a899e2ac1d9c
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_macOS_arm64.zip
sha256: bc6ae4efbf2eebcbfa7db17207e72ae33519ec240ffcc19f81b858a94612b04c
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_windows_arm64.zip
sha256: 274ba569dc9cb41653426ae556f9ea7e98fa2f4e9c162c1c8176c929698134bd
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_386.tar.gz
sha256: 3334b8745da5481c3609b72e0617927fda23af651f84badf868fe9139972bdc9
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_windows_386.zip
sha256: 00dadecb4caf369705faa1f4cc244a1a5b5e477dea49d2a4aac991853891480a
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_linux_amd64.tar.gz
sha256: 532633d851557d1da80d59addcb3f7ba20ba0341c8990d32d13f4af73ebfb3f0
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_macOS_amd64.zip
sha256: 1e50a63ceee4ecd5749184daaeab9f769ad39aa1f42af069a33760d694e4420f
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.28.0/gh_2.28.0_windows_amd64.zip
sha256: 12c33a13c72300c54f1ac2c926d879cec8ed65dda778cf53f6cb20a4de1d1ad2
2.29.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_arm64.tar.gz
sha256: 71aa963cf4eecc3cc638ad17050464410a92fb6f66a04b409997f4c63588ccb4
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_macOS_arm64.zip
sha256: 38ca9a355376abd1475362cf8b3cacf2a757198fe5fe70349cb1767666abacc6
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_windows_arm64.zip
sha256: a4e6241be4031c048f4defefa4092470a14b5c812fc64df9938bc824656d379e
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_386.tar.gz
sha256: 99c8b66f18b1d5e71950f2e04f8e41f466316179f838816d73c4c94fc632a7a7
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_windows_386.zip
sha256: 3d626044e442e59c951ad8571cdf6bf07199c905fc0eb1de15283cde8fae9ae2
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_linux_amd64.tar.gz
sha256: 9fe05f43a11a7bf8eacf731422452d1997e6708d4160ef0efcb13c103320390e
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_macOS_amd64.zip
sha256: e116d0f9c310450482cdcd7f4d2d1c7c4cab8d4f025a340260ce3f15329c5145
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.29.0/gh_2.29.0_windows_amd64.zip
sha256: 031eb343ebff6f8cc712d58d79267ee00b0c61b37d6698927161daae895044c6
2.30.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_arm64.tar.gz
sha256: 3ef741bcc1ae8bb975adb79a78e26ab7f18a246197f193aaa8cb5c3bdc373a3f
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_macOS_arm64.zip
sha256: 32a71652367f3cf664894456e4c4f655faa95964d71cc3a449fbf64bdce1fff1
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_windows_arm64.zip
sha256: 8883f41edf2e9c92c035d886bd9883bbacca37db7b79a0564f3838fd98f04ce0
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_386.tar.gz
sha256: b44c30f3662c27f60d64d420f4c8fe62d5670592de894faa245405c710a07e1c
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_windows_386.zip
sha256: 6b8270ea266b4afac5ea24a3bce3694c824769198694c52262ecfcb750106470
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_amd64.tar.gz
sha256: 5aee45bd42a27f5be309373c326e45cbcc7f04591b1798581a3094af767225b7
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_macOS_amd64.zip
sha256: 6b91c446586935de0e9df82da58309b2d1b83061cfcd4cc173124270f1277ca7
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_windows_amd64.zip
sha256: 7d466686978e3c93e1a412229a77921288862cec183e94ad06cd36bfcd34ebaf
2.31.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_arm64.tar.gz
sha256: 8e704310972ecd4a51a7f92641501d8422923a4dfc07c76719ca42611dd36a23
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_macOS_arm64.zip
sha256: 88ef39440f594a996a6245a8ad0986f28e38acb9725118e3780f3ca8a10c447e
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_windows_arm64.zip
sha256: 89692e858f433fbaee0e355641f93d4ce891d142d07494d8b48db030e6b7c1c1
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_386.tar.gz
sha256: 10a734127afeb4a5fc940d3023175130d3f432b14591eb8a2a24d8325c8ed803
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_windows_386.zip
sha256: 9569afb94ab08c3487f317393b75d3896009e9e06f7f5e92dd227358c9ea6002
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_linux_amd64.tar.gz
sha256: eec349e43803759d3d7a138d214ae983a3bebebd8e6dd0ec0ff1eea7bdd823e7
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_macOS_amd64.zip
sha256: 16f347ea9bf4b83a574acd7b4b7151915387a3660d76ff84b7cf59708a3c2972
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.31.0/gh_2.31.0_windows_amd64.zip
sha256: 9b91adeb523c393be0e64786dc179ad17a1b588bd5067dd598f524fb2782c107
2.32.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_arm64.tar.gz
sha256: 9eff1eb5d13a3fa858859bd2995077f8987a89d352548a3c116af0536f49afc0
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_macOS_arm64.zip
sha256: 6df08a326a4c00e6d33f49c458402c8a3921fd71a2f3187ce77ddb6c452d73f0
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_windows_arm64.zip
sha256: e2350f03addfc241f32aab161c5fafeb1063260c52baabf50283fd2932c0eafd
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_386.tar.gz
sha256: 1e1691ec25c30fc2471bd0eb4646050bf4bb158a931bed6872191c70fa67178f
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_windows_386.zip
sha256: 1d6b610d53bcdd20163efc2caa69513fe7c260756e4bed8c4db9bb160d39d9a2
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_linux_amd64.tar.gz
sha256: 2e306f118a46764bc1763bacc52e7b18eeca5aa6fd59d2b5fd260f0ef3cd87ae
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_macOS_amd64.zip
sha256: e6dd7cb61338c6aab27dfc744bf74817f26a938e505a8e817316513ebf02eb57
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.32.0/gh_2.32.0_windows_amd64.zip
sha256: 6aa2a15e0e5fcbe4663908964bde88277ee3678138e2fb099d0c8b68b0b62271
2.32.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_arm64.tar.gz
sha256: 78a934fa06ba9ffdf84f83a94e4da8ef2ecd6c2a037085d154050a90554e1060
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_macOS_arm64.zip
sha256: 9ccc6f8e43128523f16ecd547892c4d8e5b119237f160bf2e5a0aacd6bed7ac9
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_windows_arm64.zip
sha256: 568261c5a419d798707325291725642ab526f0cb1dde97be4a962d8c0a0e9240
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_386.tar.gz
sha256: 1c2d9e3f6c0094975c015f6533e74f3e228f99a7532aeb691593e5e90e1bd3ff
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_windows_386.zip
sha256: f0f2aa2b07e6203d9cfe8629f3475b651d54f1965d12728ca699240620651205
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_linux_amd64.tar.gz
sha256: 5c9a70b6411cc9774f5f4e68f9227d5d55ca0bfbd00dfc6353081c9b705c8939
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_macOS_amd64.zip
sha256: 28a0836aac427f8159db6d39fe42062b185e6b4cdda90c7cea639981f2d77949
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.32.1/gh_2.32.1_windows_amd64.zip
sha256: 1cfea730ef7f7c0325fc59e929c165a4e2ef517a7d742faa7b8c2bdb075264bf
2.33.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_arm64.tar.gz
sha256: ac8c84e853bcff301ab8fc05d334abebf196b300b870fb27afacf044d667def1
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_macOS_arm64.zip
sha256: 59f64b1c5528189c308ad9a69f19edf541f2bf3842cdbea2b124cf7b4f08c2be
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_windows_arm64.zip
sha256: fce33cbc7a4df822237137e7119c0203fd92fe5bcbfa3d08aa88247e230e0067
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_386.tar.gz
sha256: 3578a512d0f091a23894a56e313b8f240efeb05eb369348d34ef65c37d20312e
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_windows_386.zip
sha256: 921be94017285dd9279ed4b7215222803133035516c7cb99c4d609917d9364c4
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_amd64.tar.gz
sha256: c46d0adae4dbd0589a62b6a1d822b84ca5184ee78d246d21d5c082ab9f38a04e
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_macOS_amd64.zip
sha256: 821c982a0e14b36fd2a8ba311364d622c884a4f0c21a805606510882d385af08
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_windows_amd64.zip
sha256: b1a90fa45d44ddb010d2d2702ec2c81199a0818e628c17613f55dcde829e17ca
2.34.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_arm64.tar.gz
sha256: dc7e6ec5f69e7417daa02963bacb4046e40435cba34e35b5cb016531d9f3295e
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_macOS_arm64.zip
sha256: be556ab2e24e6261c8d4f038aaaae4da59670826f016e0d5677e44cc59ae545c
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_windows_arm64.zip
sha256: 7ba5915fddf18226b95e7563fcd709766a160df2899eaca376d50708b251e3c0
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_386.tar.gz
sha256: a88f6cce1ba3aff262634112d51b91bd8f03a5a47f3d4278c1374b6234856217
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_windows_386.zip
sha256: 12f7158b604f06d1a2d9eb756d339f0d6d2b37821bd5f28d9f60fcc6caad9dc5
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_linux_amd64.tar.gz
sha256: 056c45c510ca77ec7e492023e1aa79c078b679932b6202188b7f5abd914df911
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_macOS_amd64.zip
sha256: 9d6cd7c3952bb9a1cdaeaf04c456c558f8510ffbdc93bb4b40a85013c638bfca
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.34.0/gh_2.34.0_windows_amd64.zip
sha256: 9c775ac42e6548107cf859b15d3ad3e664eec93639e5c3cd7a84c6d98926d1dd
2.35.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_arm64.tar.gz
sha256: 3fedcf9a034a6a8706794946b1af74bc203161aa51c40a646dc434b9814ef2c9
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_macOS_arm64.zip
sha256: b8de47c2c31c747b5f595f44ea69c59e2a6c8d93a96329e852ab571c3f130c3c
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_windows_arm64.zip
sha256: 4703896fb3f8be99f8532b72cf105db8f744d888bddc00dea25b3e21173b4921
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_386.tar.gz
sha256: 3479168f5bcea72bd329b9a49dbc6fab8c168f3474d2034c1c4af3d61860def6
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_windows_386.zip
sha256: e028b7905d75b6754c84af65ec49f454dac23456e81e2aa3e7339cff3d30ebb1
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_amd64.tar.gz
sha256: 927614fbc6b391d136504ff2cc4b406f7082a2159ea51feb6f1db4fe6033feaa
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_macOS_amd64.zip
sha256: 6f8f3a4623db9cb1e334270c8e55ab52c1ff681bc25192a7c250783ceebd540d
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_windows_amd64.zip
sha256: 877851dea022b3000e7a831977ea8e91f1d47b2ab79d83ecdce2b90ab8f5d4c6
2.37.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_arm64.tar.gz
sha256: ef10a152030456f9455f2a321f2d22cb2654e987f5a008731e4c49a4eb4c29c2
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_macOS_arm64.zip
sha256: b198e750c164a85df371819c1f89c958c0eb4839af2cc07c8b8d03077d5a8255
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_windows_arm64.zip
sha256: d88a2e695df05af1f3d4e67849695d989465ddc0773e60bf574bf995fa5b3efe
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_386.tar.gz
sha256: e87926c8444a436fbd5c03723ff23d0a6a89c01e7c9799feadc0142b744538f4
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_windows_386.zip
sha256: 2cb537d5b40570ba9c6f7dc7eccb2bc949155a7b2cd6a79697f970d52768d0f2
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_linux_amd64.tar.gz
sha256: a1d79712c20af6fe36e388e762bda60c3fc8fb4af2f0cff666143f2c7d3baa88
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_macOS_amd64.zip
sha256: 0eecb97c52a90f86bd4466a63610cd27e10ea9714b88ee4ee86fdeb1f000e974
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.37.0/gh_2.37.0_windows_amd64.zip
sha256: 466cb9703d13cf55329ed7182d3b598cdabf10c642ef07c7d60700ac187ba1fc
2.38.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_arm64.tar.gz
sha256: 45b659115d5d969ace158e4f88b8e66b880d7d355203793e544d794ca31a4ba2
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_macOS_arm64.zip
sha256: 23e54cc6575c5f110f7a69fa34450524c8d43db76f523158c173b23f5e43f536
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_windows_arm64.zip
sha256: a4d76a6d0cf566d8576b5c719114df6f04dc62ee61233fb7b5a393d1eb5719b2
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_386.tar.gz
sha256: c2c72d4a6307d4d4afd0f4894af85c4a30877400dfc659100b167e35eb7a1bbb
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_windows_386.zip
sha256: 4741a63f663f61ecd5cc2111199c86d4b5d042ed1fae89bbaf60f16f79c57162
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_linux_amd64.tar.gz
sha256: c56b80a03c3b4216cd1ab63f6c7bfa4c356c67bce265fc067953bec10cdf0f97
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_macOS_amd64.zip
sha256: 71ffe7a5d9068a49d63a7094e51f6ffccbebeebb4a2669ce39950ffb42ee86e1
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.38.0/gh_2.38.0_windows_amd64.zip
sha256: 7b3e6f723ba3b92e7e9c4aa22e114a3d8b368119c9b37a2282fbb21742fa9ff1
2.39.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_arm64.tar.gz
sha256: e29e51efae58693cab394b983771bc0c73b400e429dd1d7339fc62c8b257c74a
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_macOS_arm64.zip
sha256: f854225778b7215480c442cd2e3eeec1a56d33876bbbad19daf557c1b00d6913
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_windows_arm64.zip
sha256: 7be4b8c846e515e7648a5a2ad56c6dcd1cc62ce6b58f4337b089ad506969c978
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_386.tar.gz
sha256: 892f97d5d2b42eb95dc37d1851725564ec26f4c3b7f96bfe6c76d58ed1e12fa8
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_windows_386.zip
sha256: 5759423cccfef74880a0d65f4fe8235f169a54b5887e2c08cef91019a690fa62
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_linux_amd64.tar.gz
sha256: 18a1bc97eb72305ff20e965d3c67aee7e1ac607fabc6251c7374226d8c41422b
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_macOS_amd64.zip
sha256: a604e54a840ade62c9cb81b85225cf6f6d9686f5b11399fc961a6b71c59851fb
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.39.1/gh_2.39.1_windows_amd64.zip
sha256: 6b8fe1b9d18215f1eba40b020e4d28c6d91a4bdcd6239f4bd59f5abc1d05a26c
2.39.2:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_arm64.tar.gz
sha256: ea29ede50a8fdd82297bb1db528f0e7b5f0893e165222c3d85baeee3e98019f2
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_macOS_arm64.zip
sha256: f466649e60d38446b9700d2fb345280aa1d4c086e2918c2abc797b2742e813ca
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_windows_arm64.zip
sha256: 57dd214e69ac0040ca392c0ce84f8c746d9e53c2a4a6821b81dfaf49695b63c5
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_386.tar.gz
sha256: 6022737d749b72280fcf5ff8da859f414fc7e6dccdfcae8767e379f3e3f9b94f
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_windows_386.zip
sha256: 50daec42a9a97354a8dd351bcd7e2243f79a5e3e6483ace15685534cee3db1ac
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_linux_amd64.tar.gz
sha256: 460d270662f80b8314928ff80ac36db619b8bbac281a1331afd0d6e822f40426
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_macOS_amd64.zip
sha256: 8db25741e962ac6e8f8b43c65b3b3bf8f7cba0fe706ae5b60498cceaed751f4a
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.39.2/gh_2.39.2_windows_amd64.zip
sha256: e57d3c0acafe21d2eb1e230f908898b4d48b24db979ac2f1eb510c4e2478efa6
2.40.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_arm64.tar.gz
sha256: 2f850430f300b0cc25b1c9bcdf3fe51a0b9de577534d7ee7a0fb64b38bdfd288
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_macOS_arm64.zip
sha256: c0de4ab634616e13fd0cbd51839f85407c18b16a1f04ceed2e60b4fdb7204627
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_windows_arm64.zip
sha256: 43d407a58f9612d4a6278a4ac96ab449bc2d411cf96e58324ef53eca5c9f70bd
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_386.tar.gz
sha256: c22122acd11781e7e2eb8fbd6aeec8df8432a015043cbbe9d2a4394ad22e6f85
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_windows_386.zip
sha256: d33b3351a818bfb0f448b425e987744ede830f1b9bdeb0b912ba17fd688ae694
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_amd64.tar.gz
sha256: 17f3c21f3f4c3b0175a9a0ee8f8e42e36f58e2713de81440ea9c0cb94c5a08a8
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_macOS_amd64.zip
sha256: 2e194072f57d065f20e0f568d01b80c2a06f5edb036021a08f50f194abf9afc6
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_windows_amd64.zip
sha256: 6d27beeedf5d445ba7bdc92e3e85694c375ee558dca4d0c47ae37c5d2c42b071
2.40.1:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_arm64.tar.gz
sha256: ba7bd980092eae0892e53c3a2829632bf4116ed7fbb48361b8d4566ea9e672dd
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_macOS_arm64.zip
sha256: c0b6721b38e39598834eebe6068fadfdd0b1c269c409e12183effcff7b5ebb69
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_windows_arm64.zip
sha256: 126b4b75164c97a5a377bb23c39eec335275b25b3669b124a196157af248b42a
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_386.tar.gz
sha256: 9eaa3dd2a378b639fc1a662cf7cb0321af8a1b2db688fbd2085c9222b77d8105
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_windows_386.zip
sha256: 47a290b4302a6c638da0db12b4c22f0f75ed9151a51dd0effc48f3bc1965bf1e
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_linux_amd64.tar.gz
sha256: 7f34ee83a7dd17addd1d029bc66ec06d91773a93172e3e1e30e0ec3a9f923fe2
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_macOS_amd64.zip
sha256: 759add6b7756538e025841696dce85394c0dbad48729eb2e27f5f988c5eb9acb
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.40.1/gh_2.40.1_windows_amd64.zip
sha256: 9c496dbb5781d4f796b5841cafdce5bbd962efd498f5117cd95790186fb1440b
2.41.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_linux_arm64.tar.gz
sha256: 5e2f0232b3e8a3070467eb3e9671c7861c30c90926f6ed5b313c323a41c0d9a1
aarch64-macos:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_macOS_arm64.zip
sha256: 6f4109ed17f248f7304af0a1351a2180947909524e882586bde7ff19e646780a
aarch64-windows:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_windows_arm64.zip
sha256: 3ca91b0551cf71e97ebd6b3da7457003f9d6a45b768eaac7a0bd23c3da61bb75
x86-linux:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_linux_386.tar.gz
sha256: 127472c69f3e66cf1697efaefc6e1194d486cca05ee449639cc298b41f3f3f12
x86-windows:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_windows_386.zip
sha256: e80f3178fb4bceba7caf5d3a8e172e3dfcdc38e9a66afae88f6028d7c1362312
x86_64-linux:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_linux_amd64.tar.gz
sha256: 36180360c69669eb05cee43fa3af79c0845c2d1accad0d884d4bd85f334e3b6b
x86_64-macos:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_macOS_amd64.zip
sha256: 5b0578aa165f68efc3ff9d64c03552aa429d043a54b42d363386970f18bb8058
x86_64-windows:
url: https://github.com/cli/cli/releases/download/v2.41.0/gh_2.41.0_windows_amd64.zip
sha256: 61705efe2176248c3cf6291af0887b4ce621b5b7013b397e66ac0173eb289eac
2.42.0:
aarch64-linux:
url: https://github.com/cli/cli/releases/download/v2.42.0/gh_2.42.0_linux_arm64.tar.gz