From 1e563bb17e6781b035ce03b3375ee39b60715693 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 20 Aug 2026 23:10:31 +0000 Subject: [PATCH] Update GitHub CLI to v2.98.0 Fixes #9672 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/azd/pkg/tools/github/github.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/azd/pkg/tools/github/github.go b/cli/azd/pkg/tools/github/github.go index f93d50ea2b0..771357705a5 100644 --- a/cli/azd/pkg/tools/github/github.go +++ b/cli/azd/pkg/tools/github/github.go @@ -39,7 +39,7 @@ func NewGitHubCli(console input.Console, commandRunner exec.CommandRunner) *Cli // Version is the minimum version of GitHub cli that we require (and the one we fetch when we fetch gh on // behalf of a user). -var Version semver.Version = semver.MustParse("2.97.0") +var Version semver.Version = semver.MustParse("2.98.0") // newGitHubCliImplementation is like NewGitHubCli but allows providing a custom transport for testing. func newGitHubCliImplementation( @@ -683,7 +683,7 @@ func downloadGh( return fmt.Errorf("unsupported platform") } - // example: https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_arm64.tar.gz + // example: https://github.com/cli/cli/releases/download/v2.98.0/gh_2.98.0_linux_arm64.tar.gz ghReleaseUrl := fmt.Sprintf("https://github.com/cli/cli/releases/download/v%s/%s", ghVersion, releaseName) log.Printf("downloading github cli release %s -> %s", ghReleaseUrl, releaseName)