Skip to content

Commit 004f57f

Browse files
authored
fix: bump Go version to 1.25.7 for security patches (#450)
## Summary - Bump Go from 1.25.6 to 1.25.7 in `go.mod` and `Dockerfile` - Fixes [GO-2026-4337](https://pkg.go.dev/vuln/GO-2026-4337): Unexpected session resumption in `crypto/tls` ## Affected code paths - `web.Start` → `http.Server.ListenAndServe` → `tls.Conn.HandshakeContext` - `docker.ExecServiceAdapter.Start` → `tls.Dial` / `tls.Dialer.DialContext` - `cli.ProgressReporter.Step` → `tls.Conn.Write` - `mock.ContainerService.CopyLogs` → `tls.Conn.Read` ## Test plan - [x] `govulncheck ./...` reports 0 vulnerabilities with Go 1.25.7 - [x] All existing tests pass
2 parents 226fae8 + 6438c06 commit 004f57f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pin base images by digest for supply chain security
22
# Renovate will automatically update these digests
3-
FROM golang:1.25.6-alpine@sha256:98e6cffc31ccc44c7c15d83df1d69891efee8115a5bb7ede2bf30a38af3e3c92 AS builder
3+
FROM golang:1.25.7-alpine@sha256:724e212d86d79b45b7ace725b44ff3b6c2684bfd3131c43d5d60441de151d98e AS builder
44

55
# hadolint ignore=DL3018
66
RUN apk add --no-cache gcc musl-dev git

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/netresearch/ofelia
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2

0 commit comments

Comments
 (0)