Skip to content

Commit

Permalink
go1.22.4,go1.21.11 (#248)
Browse files Browse the repository at this point in the history
Co-authored-by: techknowlogick <[email protected]>
  • Loading branch information
techknowlogick and techknowlogick authored Jun 4, 2024
1 parent 227200a commit 1081a41
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 @@
3fabf4fe4f16d9355701e244a6a08e2958a0e56190ac23c04e78750f225a3a06
8b2d1c027505de5db28dae628e597b1d02f37b2b700cc210c0599f61ec71aa30
2 changes: 1 addition & 1 deletion .golang_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
go1.22.3,go1.21.10
go1.22.4,go1.21.11
17 changes: 0 additions & 17 deletions docker/go-1.21.10/Dockerfile

This file was deleted.

17 changes: 17 additions & 0 deletions docker/go-1.21.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 12111

RUN \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.21.11.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=54a87a9325155b98c85bc04dc50298ddd682489eb47f486f2e6cb0707554abf0;\
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.21.11.linux-arm64.tar.gz && \
export ROOT_DIST_SHA=715d9a7ff72e4e0e3378c48318c52c6e4dd32a47c4136f3c08846f89b2ee2241;\
else \
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \
fi && \
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.21.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## GENERATED. DO NOT EDIT DIRECTLY.
FROM go-1.21.10
FROM go-1.21.11
17 changes: 0 additions & 17 deletions docker/go-1.22.3/Dockerfile

This file was deleted.

17 changes: 17 additions & 0 deletions docker/go-1.22.4/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 1224

RUN \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.22.4.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d;\
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export ROOT_DIST=https://dl.google.com/go/go1.22.4.linux-arm64.tar.gz && \
export ROOT_DIST_SHA=a8e177c354d2e4a1b61020aca3562e27ea3e8f8247eca3170e3fa1e0c2f9e771;\
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.3
FROM go-1.22.4

0 comments on commit 1081a41

Please sign in to comment.