-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
update to go1.23.2
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
ARG OS_CODENAME=bookworm | ||
|
||
FROM ghcr.io/gythialy/golang-cross-builder:v1.23.1-0-${OS_CODENAME:-bookworm} | ||
FROM ghcr.io/gythialy/golang-cross-builder:v1.23.2-0-${OS_CODENAME:-bookworm} | ||
|
||
LABEL maintainer="Goren G<[email protected]>" | ||
LABEL org.opencontainers.image.source https://github.com/gythialy/golang-cross | ||
Check warning on line 6 in Dockerfile GitHub Actions / buildLegacy key/value format with whitespace separator should not be used
Check warning on line 6 in Dockerfile GitHub Actions / release (bullseye)Legacy key/value format with whitespace separator should not be used
Check warning on line 6 in Dockerfile GitHub Actions / release (bookworm)Legacy key/value format with whitespace separator should not be used
Check warning on line 6 in Dockerfile GitHub Actions / release (bullseye)Legacy key/value format with whitespace separator should not be used
Check warning on line 6 in Dockerfile GitHub Actions / release (bookworm)Legacy key/value format with whitespace separator should not be used
|
||
|
@@ -29,8 +29,8 @@ RUN \ | |
tar -xzf $SYFT_DOWNLOAD_FILE -C /usr/bin/ syft && \ | ||
rm $SYFT_DOWNLOAD_FILE | ||
|
||
ARG GO_VERSION=go1.23.1 | ||
ARG GOLANG_DIST_SHA=49bbb517cfa9eee677e1e7897f7cf9cfdbcf49e05f61984a2789136de359f9bd | ||
ARG GO_VERSION=go1.23.2 | ||
ARG GOLANG_DIST_SHA=542d3c1705f1c6a1c5a80d5dc62e2e45171af291e755d591c5e6531ef63b454e | ||
# update golang | ||
RUN \ | ||
GOLANG_DIST=https://storage.googleapis.com/golang/${GO_VERSION}.linux-amd64.tar.gz && \ | ||
|