Skip to content

Commit fccd87f

Browse files
authored
Bump Go toolchain to 1.26.2 for CVE fix (#3336)
* chore(server): bump Go version to 1.26.2 for CVE fix (DT-3889) * chore: update Go version to 1.26.2 in Dockerfile and .tool-versions
1 parent 7522f27 commit fccd87f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pnpm 10.10.0
22
nodejs 22.14.0
3-
golang 1.24.11
3+
golang 1.26.2

server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.7-alpine3.23 AS server-builder
1+
FROM golang:1.26.2-alpine3.23 AS server-builder
22

33
RUN apk upgrade --no-cache && \
44
apk add --no-cache \
@@ -15,7 +15,7 @@ COPY . ./
1515

1616
RUN make build-server
1717

18-
FROM golang:1.25.7-alpine3.23 AS dockerize-builder
18+
FROM golang:1.26.2-alpine3.23 AS dockerize-builder
1919

2020
ARG DOCKERIZE_VERSION=v0.10.1
2121
RUN go install github.com/jwilder/dockerize@${DOCKERIZE_VERSION} && \

server/go.mod

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

3-
go 1.24.11
3+
go 1.26.2
44

55
require (
66
github.com/Masterminds/sprig/v3 v3.3.0

0 commit comments

Comments
 (0)