Skip to content

Update GitHub CLI to v2.74.1 and parameterize version #20898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dev/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,9 @@ RUN sudo install-packages shellcheck \
&& sudo python3 -m pip install pre-commit

# gh (Github CLI) binary:
RUN cd /usr/bin && curl -fsSL https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_amd64.tar.gz \
| sudo tar xzv --strip-components=2 gh_2.35.0_linux_amd64/bin/gh
ARG GH_VERSION="2.74.1"
RUN cd /usr/bin && curl -fsSL https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz \
| sudo tar xzv --strip-components=2 gh_${GH_VERSION}_linux_amd64/bin/gh

# Install observability-related binaries
ARG PROM_VERSION="2.36.0"
Expand Down
Loading