Skip to content

Commit 53cb00a

Browse files
committed
update to go1.21.13
- https://github.com/golang/go/issues?q=milestone%3AGo1.21.13+label%3ACherryPickApproved - full diff: golang/go@go1.21.12...go1.21.13 go1.21.13 (released 2024-08-06) includes fixes to the go command, the covdata command, and the bytes package. See the [Go 1.21.13 milestone](https://github.com/golang/go/issues?q=milestone%3AGo1.21.13+label%3ACherryPickApproved) on our issue tracker for details. Signed-off-by: Paweł Gronowski <[email protected]> (cherry picked from commit 434d8b7) Signed-off-by: Paweł Gronowski <[email protected]>
1 parent a35c363 commit 53cb00a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
name: Set up Go
6666
uses: actions/setup-go@v5
6767
with:
68-
go-version: 1.21.12
68+
go-version: 1.21.13
6969
-
7070
name: Test
7171
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.20
55
ARG BASE_DEBIAN_DISTRO=bookworm
66

7-
ARG GO_VERSION=1.21.12
7+
ARG GO_VERSION=1.21.13
88
ARG XX_VERSION=1.4.0
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.12"
2+
default = "1.21.13"
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.12
3+
ARG GO_VERSION=1.21.13
44
ARG ALPINE_VERSION=3.20
55

66
ARG BUILDX_VERSION=0.16.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.12
3+
ARG GO_VERSION=1.21.13
44
ARG ALPINE_VERSION=3.20
55
ARG GOLANGCI_LINT_VERSION=v1.59.1
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.12
3+
ARG GO_VERSION=1.21.13
44
ARG ALPINE_VERSION=3.20
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.12
3+
ARG GO_VERSION=1.21.13
44

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

0 commit comments

Comments
 (0)