From b3448bc82b909424adaac38408e6c89ea232cbdf Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Sat, 13 Jan 2024 13:16:05 -0600 Subject: [PATCH] Update unstable images to Go 1.22rc1 - build/alpine-x64 - build/alpine-x86 - build/release - combined refs GH-1304 --- unstable/build/alpine-x64/Dockerfile | 2 +- unstable/build/alpine-x86/Dockerfile | 2 +- unstable/build/release/Dockerfile | 2 +- unstable/combined/Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/unstable/build/alpine-x64/Dockerfile b/unstable/build/alpine-x64/Dockerfile index ac55c05e..4c331f9a 100644 --- a/unstable/build/alpine-x64/Dockerfile +++ b/unstable/build/alpine-x64/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM golang:1.21.6-alpine3.18 +FROM golang:1.22rc1-alpine3.18 # 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 e9b3f60d..89c309de 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.21.6-alpine3.18 +FROM i386/golang:1.22rc1-alpine3.18 # 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 2ee3d490..9c7a9b21 100644 --- a/unstable/build/release/Dockerfile +++ b/unstable/build/release/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM golang:1.21.6-bookworm +FROM golang:1.22rc1-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 b74467b4..60aabe41 100644 --- a/unstable/combined/Dockerfile +++ b/unstable/combined/Dockerfile @@ -7,7 +7,7 @@ # https://hub.docker.com/_/golang -FROM golang:1.21.0-bookworm as builder +FROM golang:1.22rc1-bookworm as builder # Explicitly disable automatic fetching of Go toolchains newer than the # version explicitly provided by this container image. @@ -62,7 +62,7 @@ RUN echo "Installing golangci-lint@${GOLANGCI_LINT_VERSION}" \ && golangci-lint --version -FROM golang:1.21-bookworm as final +FROM golang:1.22rc1-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"