Skip to content

Commit fdefbe9

Browse files
committed
fix: Switch from wget to curl
1 parent 22e4993 commit fdefbe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github-runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ RUN apt-get update && apt-get install -y curl unzip gnupg
44
RUN curl -LO "https://dl.k8s.io/release/v1.34.0/bin/linux/amd64/kubectl" \
55
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
66
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
7-
RUN wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v4.44.1/yq_linux_amd64 \
7+
RUN curl -L -o /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v4.44.1/yq_linux_amd64 \
88
&& chmod +x /usr/local/bin/yq
99
USER runner

0 commit comments

Comments
 (0)