Skip to content

Commit 20b9d48

Browse files
committed
update to go1.21.7
go1.21.7 (released 2024-02-06) includes fixes to the compiler, the go command, the runtime, and the crypto/x509 package. See the Go 1.21.7 milestone on our issue tracker for details: - https://github.com/golang/go/issues?q=milestone%3AGo1.21.7+label%3ACherryPickApproved - full diff: golang/go@go1.21.6...go1.21.7 Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 67105e0 commit 20b9d48

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
name: Set up Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: 1.21.6
66+
go-version: 1.21.7
6767
-
6868
name: Test
6969
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BASE_VARIANT=alpine
44
ARG ALPINE_VERSION=3.18
55
ARG BASE_DEBIAN_DISTRO=bookworm
66

7-
ARG GO_VERSION=1.21.6
7+
ARG GO_VERSION=1.21.7
88
ARG XX_VERSION=1.2.1
99
ARG GOVERSIONINFO_VERSION=v1.3.0
1010
ARG GOTESTSUM_VERSION=v1.10.0

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "GO_VERSION" {
2-
default = "1.21.6"
2+
default = "1.21.7"
33
}
44
variable "VERSION" {
55
default = ""

dockerfiles/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.21.6
3+
ARG GO_VERSION=1.21.7
44
ARG ALPINE_VERSION=3.18
55

66
ARG BUILDX_VERSION=0.12.1

dockerfiles/Dockerfile.lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.21.6
3+
ARG GO_VERSION=1.21.7
44
ARG ALPINE_VERSION=3.18
55
ARG GOLANGCI_LINT_VERSION=v1.55.2
66

dockerfiles/Dockerfile.vendor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.21.6
3+
ARG GO_VERSION=1.21.7
44
ARG ALPINE_VERSION=3.18
55
ARG MODOUTDATED_VERSION=v0.8.0
66

e2e/testdata/Dockerfile.gencerts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.21.6
3+
ARG GO_VERSION=1.21.7
44

55
FROM golang:${GO_VERSION}-alpine AS generated
66
ENV GOTOOLCHAIN=local

0 commit comments

Comments
 (0)