Skip to content

Commit c6fd5bd

Browse files
authored
feat: Build with go 1.25.3 to fix CVEs (#1369)
**What problem does this PR solve?**: Fixes following CVEs as discovered in https://github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/actions/runs/18925539016/job/54031624333: - https://pkg.go.dev/vuln/GO-2025-4007 - https://pkg.go.dev/vuln/GO-2025-4008 - https://pkg.go.dev/vuln/GO-2025-4009 - https://pkg.go.dev/vuln/GO-2025-4010 - https://pkg.go.dev/vuln/GO-2025-4011 - https://pkg.go.dev/vuln/GO-2025-4012 - https://pkg.go.dev/vuln/GO-2025-4013 **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent 99a6f76 commit c6fd5bd

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/ap
55

66
go 1.23.0
77

8-
toolchain go1.25.1
8+
toolchain go1.25.3
99

1010
replace github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/common => ../common
1111

common/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/co
55

66
go 1.23.0
77

8-
toolchain go1.25.1
8+
toolchain go1.25.3
99

1010
require (
1111
github.com/evanphx/json-patch/v5 v5.9.11

devbox.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -786,50 +786,50 @@
786786
}
787787
},
788788
"go@latest": {
789-
"last_modified": "2025-09-18T16:33:27Z",
790-
"resolved": "github:NixOS/nixpkgs/f4b140d5b253f5e2a1ff4e5506edbf8267724bde#go",
789+
"last_modified": "2025-10-07T08:41:47Z",
790+
"resolved": "github:NixOS/nixpkgs/bce5fe2bb998488d8e7e7856315f90496723793c#go",
791791
"source": "devbox-search",
792-
"version": "1.25.0",
792+
"version": "1.25.1",
793793
"systems": {
794794
"aarch64-darwin": {
795795
"outputs": [
796796
{
797797
"name": "out",
798-
"path": "/nix/store/cr196bvbbai01r0w11p1inkzkdrqdx6y-go-1.25.0",
798+
"path": "/nix/store/mkdfnr1nkfj2kznxyag9pypbxp3wqqdv-go-1.25.1",
799799
"default": true
800800
}
801801
],
802-
"store_path": "/nix/store/cr196bvbbai01r0w11p1inkzkdrqdx6y-go-1.25.0"
802+
"store_path": "/nix/store/mkdfnr1nkfj2kznxyag9pypbxp3wqqdv-go-1.25.1"
803803
},
804804
"aarch64-linux": {
805805
"outputs": [
806806
{
807807
"name": "out",
808-
"path": "/nix/store/yhcdwwikp86p2cpq0qr7di91ji63460s-go-1.25.0",
808+
"path": "/nix/store/0jzj8p7k9wkr4l17sgrlg3z5di27sggf-go-1.25.1",
809809
"default": true
810810
}
811811
],
812-
"store_path": "/nix/store/yhcdwwikp86p2cpq0qr7di91ji63460s-go-1.25.0"
812+
"store_path": "/nix/store/0jzj8p7k9wkr4l17sgrlg3z5di27sggf-go-1.25.1"
813813
},
814814
"x86_64-darwin": {
815815
"outputs": [
816816
{
817817
"name": "out",
818-
"path": "/nix/store/hz7dfw13v8iff4vf6vbnqnlnd7wh7j5x-go-1.25.0",
818+
"path": "/nix/store/q2xylk8h3kbfajhw2lpdmyzyyqgqx8fl-go-1.25.1",
819819
"default": true
820820
}
821821
],
822-
"store_path": "/nix/store/hz7dfw13v8iff4vf6vbnqnlnd7wh7j5x-go-1.25.0"
822+
"store_path": "/nix/store/q2xylk8h3kbfajhw2lpdmyzyyqgqx8fl-go-1.25.1"
823823
},
824824
"x86_64-linux": {
825825
"outputs": [
826826
{
827827
"name": "out",
828-
"path": "/nix/store/3fd683jfggglpshxprz9mi5sz8wd3c9p-go-1.25.0",
828+
"path": "/nix/store/f01qkydd3c2jqwi4w6hkddkf3blp16kw-go-1.25.1",
829829
"default": true
830830
}
831831
],
832-
"store_path": "/nix/store/3fd683jfggglpshxprz9mi5sz8wd3c9p-go-1.25.0"
832+
"store_path": "/nix/store/f01qkydd3c2jqwi4w6hkddkf3blp16kw-go-1.25.1"
833833
}
834834
}
835835
},

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix
55

66
go 1.24.0
77

8-
toolchain go1.25.1
8+
toolchain go1.25.3
99

1010
replace (
1111
github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/api => ./api

hack/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/ha
55

66
go 1.23.0
77

8-
toolchain go1.25.1
8+
toolchain go1.25.3
99

1010
require (
1111
github.com/blang/semver/v4 v4.0.0

0 commit comments

Comments
 (0)