From c798f08d70884a8f1d236ee93600595af960daa8 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 24 Jun 2024 05:01:29 -0500 Subject: [PATCH] Update unstable images to Go 1.23rc1 - build/alpine-x64 - build/alpine-x86 - build/cgo-mingw-w64-x64 - build/cgo-mingw-w64-x86 - build/release - combined refs GH-1583 --- unstable/build/alpine-x64/Dockerfile | 2 +- unstable/build/alpine-x86/Dockerfile | 2 +- unstable/build/cgo-mingw-w64-x64/Dockerfile | 2 +- unstable/build/cgo-mingw-w64-x86/Dockerfile | 2 +- unstable/build/release/Dockerfile | 2 +- unstable/combined/Dockerfile | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/unstable/build/alpine-x64/Dockerfile b/unstable/build/alpine-x64/Dockerfile index 91e6a687..554ec781 100644 --- a/unstable/build/alpine-x64/Dockerfile +++ b/unstable/build/alpine-x64/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM amd64/golang:1.22.4-alpine3.20 +FROM amd64/golang:1.23rc1-alpine3.20 # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" diff --git a/unstable/build/alpine-x86/Dockerfile b/unstable/build/alpine-x86/Dockerfile index 566e6d28..ecd59954 100644 --- a/unstable/build/alpine-x86/Dockerfile +++ b/unstable/build/alpine-x86/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM i386/golang:1.22.4-alpine3.20 +FROM i386/golang:1.23rc1-alpine3.20 # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" diff --git a/unstable/build/cgo-mingw-w64-x64/Dockerfile b/unstable/build/cgo-mingw-w64-x64/Dockerfile index 39d14280..0b9a101f 100644 --- a/unstable/build/cgo-mingw-w64-x64/Dockerfile +++ b/unstable/build/cgo-mingw-w64-x64/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM amd64/golang:1.22.4-bullseye +FROM amd64/golang:1.23rc1-bullseye # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" diff --git a/unstable/build/cgo-mingw-w64-x86/Dockerfile b/unstable/build/cgo-mingw-w64-x86/Dockerfile index 35a40b74..3b3ec6b5 100644 --- a/unstable/build/cgo-mingw-w64-x86/Dockerfile +++ b/unstable/build/cgo-mingw-w64-x86/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/r/i386/golang -FROM i386/golang:1.22.4-bullseye +FROM i386/golang:1.23rc1-bullseye # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" diff --git a/unstable/build/release/Dockerfile b/unstable/build/release/Dockerfile index c56811a3..a46781b8 100644 --- a/unstable/build/release/Dockerfile +++ b/unstable/build/release/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM amd64/golang:1.22.4-bookworm +FROM amd64/golang:1.23rc1-bookworm # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" diff --git a/unstable/combined/Dockerfile b/unstable/combined/Dockerfile index 49ef4229..28abcf4f 100644 --- a/unstable/combined/Dockerfile +++ b/unstable/combined/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM amd64/golang:1.22.4-bookworm as builder +FROM amd64/golang:1.23rc1-bookworm as builder # Explicitly disable automatic fetching of Go toolchains newer than the # version explicitly provided by this container image. @@ -112,7 +112,7 @@ RUN echo "Installing golangci-lint@${GOLANGCI_LINT_VERSION}" \ && golangci-lint --version -FROM amd64/golang:1.22.4-bookworm as final +FROM amd64/golang:1.23rc1-bookworm as final # https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"