go1.23.4 (released 2024-12-03) includes fixes to the compiler, the runtime,
the trace command, and the syscall package. See the Go 1.23.4 milestone on
our issue tracker for details:
- https://github.com/golang/go/issues?q=milestone%3AGo1.23.4+label%3ACherryPickApproved
- full diff: https://github.com/golang/go/compare/go1.23.3...go1.23.4
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -23,7 +23,7 @@ linters: |
| 23 | 23 |
run: |
| 24 | 24 |
# prevent golangci-lint from deducting the go version to lint for through go.mod, |
| 25 | 25 |
# which causes it to fallback to go1.17 semantics. |
| 26 |
- go: "1.23.3" |
|
| 26 |
+ go: "1.23.4" |
|
| 27 | 27 |
concurrency: 2 |
| 28 | 28 |
# Only supported with go modules enabled (build flag -mod=vendor only valid when using modules) |
| 29 | 29 |
# modules-download-mode: vendor |
| ... | ... |
@@ -161,7 +161,7 @@ FROM ${WINDOWS_BASE_IMAGE}:${WINDOWS_BASE_IMAGE_TAG}
|
| 161 | 161 |
# Use PowerShell as the default shell |
| 162 | 162 |
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] |
| 163 | 163 |
|
| 164 |
-ARG GO_VERSION=1.23.3 |
|
| 164 |
+ARG GO_VERSION=1.23.4 |
|
| 165 | 165 |
ARG GOTESTSUM_VERSION=v1.8.2 |
| 166 | 166 |
ARG GOWINRES_VERSION=v0.3.1 |
| 167 | 167 |
ARG CONTAINERD_VERSION=v1.7.24 |