Skip to content

Commit

Permalink
go1.23.5,go1.22.11 (#268)
Browse files Browse the repository at this point in the history
Co-authored-by: techknowlogick <[email protected]>
  • Loading branch information
techknowlogick and techknowlogick authored Jan 16, 2025
1 parent 2eafbd3 commit 976b12f
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .golang_hash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c5e1718bdab6a6d22b720bc977f80a6552b81ca0fbbf77b86c19954536c64c87
f29ea2b6607fb11335818a464eb3f04c377ed8d418a3a5f8683c74af0631ee71
2 changes: 1 addition & 1 deletion .golang_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
go1.23.4,go1.22.10
go1.23.5,go1.22.11
17 changes: 0 additions & 17 deletions docker/go-1.22.10/Dockerfile

This file was deleted.

17 changes: 17 additions & 0 deletions docker/go-1.22.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## GENERATED. DO NOT EDIT DIRECTLY.
FROM toolchain

ARG TARGETPLATFORM
ENV GO_VERSION=12211

RUN \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.22.11.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=0fc88d966d33896384fbde56e9a8d80a305dc17a9f48f1832e061724b1719991;\
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.22.11.linux-arm64.tar.gz && \
export ROOT_DIST_SHA=9ebfcab26801fa4cf0627c6439db7a4da4d3c6766142a3dd83508240e4f21031;\
else \
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \
fi && \
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.22.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## GENERATED. DO NOT EDIT DIRECTLY.
FROM go-1.22.10
FROM go-1.22.11
17 changes: 0 additions & 17 deletions docker/go-1.23.4/Dockerfile

This file was deleted.

17 changes: 17 additions & 0 deletions docker/go-1.23.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## GENERATED. DO NOT EDIT DIRECTLY.
FROM toolchain

ARG TARGETPLATFORM
ENV GO_VERSION=1235

RUN \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.23.5.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=cbcad4a6482107c7c7926df1608106c189417163428200ce357695cc7e01d091;\
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.23.5.linux-arm64.tar.gz && \
export ROOT_DIST_SHA=47c84d332123883653b70da2db7dd57d2a865921ba4724efcdf56b5da7021db0;\
else \
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \
fi && \
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.23.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## GENERATED. DO NOT EDIT DIRECTLY.
FROM go-1.23.4
FROM go-1.23.5

0 comments on commit 976b12f

Please sign in to comment.