From af6fba371f8f3a7b64cbe256cd2e0727ef1d0ac8 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Wed, 2 Oct 2024 09:57:58 +0300 Subject: [PATCH] bump golang to `1.23.2` --- build/Dockerfile.helper | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Dockerfile.helper b/build/Dockerfile.helper index e51b2ff6..a5ab7ae7 100644 --- a/build/Dockerfile.helper +++ b/build/Dockerfile.helper @@ -1,5 +1,5 @@ -# docker buildx build --platform linux/amd64,linux/arm64 -t quay.io/codefresh/golang-ci-helper:1.22.7 -f Dockerfile.helper . -FROM golang:1.22.7-alpine3.20 +# docker buildx build --platform linux/amd64,linux/arm64 -t quay.io/codefresh/golang-ci-helper:1.23.2 -f Dockerfile.helper . +FROM golang:1.23.2-alpine3.20 RUN apk -U add --no-cache \ bash \ @@ -13,7 +13,7 @@ RUN apk -U add --no-cache \ openssl \ && update-ca-certificates -ARG GH_VERSION=2.55.0 +ARG GH_VERSION=2.57.0 RUN curl -L https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz --output gh.tar.gz \ && tar -xzf gh.tar.gz \ && mv gh_${GH_VERSION}_linux_amd64/bin/gh /usr/local/bin \