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)