This release addresses breakage caused by a security patch included in
Go 1.25.2 and 1.24.8, which enforced overly restrictive validation on
the parsing of X.509 certificates. We've removed those restrictions
while maintaining the security fix that the initial release addressed.
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
| ... | ... |
@@ -3,7 +3,7 @@ version: "2" |
| 3 | 3 |
run: |
| 4 | 4 |
# prevent golangci-lint from deducting the go version to lint for through go.mod, |
| 5 | 5 |
# which causes it to fallback to go1.17 semantics. |
| 6 |
- go: "1.25.2" |
|
| 6 |
+ go: "1.25.3" |
|
| 7 | 7 |
concurrency: 2 |
| 8 | 8 |
# Only supported with go modules enabled (build flag -mod=vendor only valid when using modules) |
| 9 | 9 |
# 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.25.2 |
|
| 164 |
+ARG GO_VERSION=1.25.3 |
|
| 165 | 165 |
|
| 166 | 166 |
# GOTESTSUM_VERSION is the version of gotest.tools/gotestsum to install. |
| 167 | 167 |
ARG GOTESTSUM_VERSION=v1.13.0 |