Skip to content

Commit 4d8150e

Browse files
V5.4 update Go to v1.25.3 (#3937)
* V5.4 update Go to v1.25.3 * also update circleci image --------- Co-authored-by: Wout Slakhorst <[email protected]>
1 parent 2dab633 commit 4d8150e

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
parallelism: 8
1515
docker:
16-
- image: cimg/go:1.21
16+
- image: cimg/go:1.25
1717
steps:
1818
- checkout
1919

@@ -37,7 +37,7 @@ jobs:
3737

3838
report:
3939
docker:
40-
- image: cimg/go:1.21
40+
- image: cimg/go:1.25
4141
steps:
4242
- checkout
4343
- attach_workspace:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang alpine
2-
FROM golang:1.24.6-alpine AS builder
2+
FROM golang:1.25.3-alpine AS builder
33

44
ARG TARGETARCH
55
ARG TARGETOS
@@ -21,7 +21,7 @@ COPY . .
2121
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -ldflags="-w -s -X 'github.com/nuts-foundation/nuts-node/core.GitCommit=${GIT_COMMIT}' -X 'github.com/nuts-foundation/nuts-node/core.GitBranch=${GIT_BRANCH}' -X 'github.com/nuts-foundation/nuts-node/core.GitVersion=${GIT_VERSION}'" -o /opt/nuts/nuts
2222

2323
# alpine
24-
FROM alpine:3.22.0
24+
FROM alpine:3.22.2
2525
RUN apk update \
2626
&& apk add --no-cache \
2727
tzdata \

docs/pages/release_notes.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
Release notes
44
#############
55

6+
*************************
7+
Hazelnut update (v5.4.20)
8+
*************************
9+
10+
Release date: 2025-11-03
11+
12+
- Update Go version to fix https://pkg.go.dev/vuln/GO-2025-4007,
13+
https://pkg.go.dev/vuln/GO-2025-4008,
14+
https://pkg.go.dev/vuln/GO-2025-4009,
15+
https://pkg.go.dev/vuln/GO-2025-4010,
16+
https://pkg.go.dev/vuln/GO-2025-4011,
17+
https://pkg.go.dev/vuln/GO-2025-4012,
18+
https://pkg.go.dev/vuln/GO-2025-4013, and
19+
https://pkg.go.dev/vuln/GO-2025-4014
20+
21+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.19...v5.4.20
22+
623
*************************
724
Hazelnut update (v5.4.19)
825
*************************

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/nuts-foundation/nuts-node
22

33
// This is the minimal version, the actual go version is determined by the images in the Dockerfile
44
// This version is used in automated tests such as the 'Scheduled govulncheck' action
5-
go 1.24.6
5+
go 1.25.3
66

77
require (
88
github.com/alicebob/miniredis/v2 v2.33.0

0 commit comments

Comments
 (0)