Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin Go version to 1.20.5 #4021

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.test.yml
Expand Up @@ -27,7 +27,7 @@ on:
type: string

env:
GO_VERSION: "1.20"
GO_VERSION: "1.20.5"
SETUP_BUILDX_VERSION: "latest"
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
TESTFLAGS: "-v --parallel=6 --timeout=30m"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildkit.yml
Expand Up @@ -21,7 +21,7 @@ on:
- 'frontend/dockerfile/docs/**'

env:
GO_VERSION: "1.20"
GO_VERSION: "1.20.5"
SETUP_BUILDX_VERSION: "latest"
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
IMAGE_NAME: "moby/buildkit"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Expand Up @@ -19,7 +19,7 @@ on:
- 'frontend/dockerfile/docs/**'

env:
GO_VERSION: "1.20"
GO_VERSION: "1.20.5"
SETUP_BUILDX_VERSION: "latest"
SETUP_BUILDKIT_TAG: "moby/buildkit:latest"
IMAGE_NAME: "docker/dockerfile-upstream"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-os.yml
Expand Up @@ -19,7 +19,7 @@ on:
- 'frontend/dockerfile/docs/**'

env:
GO_VERSION: "1.20"
GO_VERSION: "1.20.5"
TESTFLAGS: "-v --parallel=6 --timeout=30m"
GOTESTSUM_VERSION: "v1.9.0" # same as one in Dockerfile
GOTESTSUM_FORMAT: "standard-verbose"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -16,7 +16,7 @@ ARG MINIO_MC_VERSION=RELEASE.2022-05-04T06-07-55Z
ARG AZURITE_VERSION=3.18.0
ARG GOTESTSUM_VERSION=v1.9.0

ARG GO_VERSION=1.20
ARG GO_VERSION=1.20.5
ARG ALPINE_VERSION=3.18

# minio for s3 integration tests
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit0/buildkit.go
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit1/buildkit.go
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit2/buildkit.go
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit3/buildkit.go
Expand Up @@ -34,7 +34,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit4/buildkit.go
Expand Up @@ -37,7 +37,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/nested-llb/main.go
Expand Up @@ -32,7 +32,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.20-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.20.5-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion frontend/dockerfile/cmd/dockerfile-frontend/Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:master

ARG GO_VERSION=1.20
ARG GO_VERSION=1.20.5

# xx is a helper for cross-compilation
FROM --platform=$BUILDPLATFORM tonistiigi/xx:master@sha256:d4254d9739ce2de9fb88e09bdc716aa0c65f0446a2a2143399f991d71136a3d4 AS xx
Expand Down
2 changes: 1 addition & 1 deletion hack/dockerfiles/docs.Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION=1.20
ARG GO_VERSION=1.20.5

FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golatest

Expand Down
2 changes: 1 addition & 1 deletion hack/dockerfiles/generated-files.Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:master

ARG GO_VERSION="1.20"
ARG GO_VERSION="1.20.5"
ARG PROTOC_VERSION="3.11.4"

# protoc is dynamically linked to glibc so can't use alpine base
Expand Down
2 changes: 1 addition & 1 deletion hack/dockerfiles/lint.Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:master

ARG GO_VERSION=1.20
ARG GO_VERSION=1.20.5

FROM golang:${GO_VERSION}-alpine
ENV GOFLAGS="-buildvcs=false"
Expand Down
2 changes: 1 addition & 1 deletion hack/dockerfiles/vendor.Dockerfile
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:master

ARG GO_VERSION=1.20
ARG GO_VERSION=1.20.5
ARG MODOUTDATED_VERSION=v0.9.0

FROM golang:${GO_VERSION}-alpine AS base
Expand Down
2 changes: 1 addition & 1 deletion util/archutil/Dockerfile
Expand Up @@ -52,7 +52,7 @@ FROM base AS exit-mips64
COPY fixtures/exit.mips64.s .
RUN mips64-linux-gnuabi64-as --noexecstack -o exit.o exit.mips64.s && mips64-linux-gnuabi64-ld -o exit -s exit.o

FROM golang:1.20-alpine AS generate
FROM golang:1.20.5-alpine AS generate
WORKDIR /src
COPY --from=exit-amd64 /src/exit amd64
COPY --from=exit-386 /src/exit 386
Expand Down