From 2d9cb67046e63a1a6b96913b0d514131fb606d48 Mon Sep 17 00:00:00 2001 From: Chris Frantz Date: Fri, 16 Dec 2022 14:46:35 -0800 Subject: [PATCH] Update the version of the gh cli tool Signed-off-by: Chris Frantz --- third_party/github/repos.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/github/repos.bzl b/third_party/github/repos.bzl index c124408..bf221c8 100644 --- a/third_party/github/repos.bzl +++ b/third_party/github/repos.bzl @@ -7,8 +7,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") def github_tools_repos(): http_archive( name = "com_github_gh", - url = "https://github.com/cli/cli/releases/download/v2.13.0/gh_2.13.0_linux_amd64.tar.gz", - sha256 = "9e833e02428cd49e0af73bc7dc4cafa329fe3ecba1bfe92f0859bf5b11916401", + url = "https://github.com/cli/cli/releases/download/v2.20.2/gh_2.20.2_linux_amd64.tar.gz", + sha256 = "3bc7cd3b2fd9082218b8246595673f55badb351db1b9e627eec121beb8b26450", build_file = Label("//third_party/github:BUILD.gh.bazel"), - strip_prefix = "gh_2.13.0_linux_amd64", + strip_prefix = "gh_2.20.2_linux_amd64", )