Skip to content

Commit 220472d

Browse files
committed
GO-2025-4155: Bump go to 1.25.5
1 parent 9999615 commit 220472d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

flakes/go/flake.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
description = "A dev shell with a custom-fetched Go 1.25.3";
2+
description = "A dev shell with a custom-fetched Go 1.25.5";
33

44
inputs = {
55
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
@@ -11,20 +11,20 @@
1111
let
1212
pkgs = nixpkgs.legacyPackages.${system};
1313

14-
goVersion = "1.25.3";
14+
goVersion = "1.25.5";
1515

1616
go-src =
1717
if pkgs.stdenv.isLinux && pkgs.stdenv.hostPlatform.system == "x86_64-linux" then {
1818
url = "https://go.dev/dl/go${goVersion}.linux-amd64.tar.gz";
19-
sha256 = "sha256-AzXzFLbnv+CMPQz6p8GduWG3uZ+yC+YrCoJsmSrRTg8=";
19+
sha256 = "sha256-npt1XWOzas8wwSqaP8N5JDcUwcbT3XKGHaY38zbrs1s=";
2020
}
2121
else if pkgs.stdenv.isDarwin && pkgs.stdenv.hostPlatform.system == "aarch64-darwin" then {
2222
url = "https://go.dev/dl/go${goVersion}.darwin-arm64.tar.gz";
23-
sha256 = "sha256-fAg+PSwA3r/rL3fZpMAKGqyXETuJuczEKpBIevNDc4I=";
23+
sha256 = "sha256-vtjr6CTj07J+hHHRMH+AP8arjh0Ot6SuGWl5vZuAHdM=";
2424
}
2525
else throw "This flake does not support system: ${pkgs.stdenv.hostPlatform.system}";
2626

27-
go_1_25_3 = pkgs.stdenv.mkDerivation {
27+
go_1_25_ako = pkgs.stdenv.mkDerivation {
2828
pname = "go-custom";
2929
version = goVersion;
3030

@@ -42,12 +42,12 @@
4242

4343
in
4444
{
45-
packages.go_1_25_3 = go_1_25_3;
46-
packages.default = go_1_25_3;
45+
packages.go_1_25 = go_1_25_ako;
46+
packages.default = go_1_25_ako;
4747

4848
devShells.default = pkgs.mkShell {
4949
packages = [
50-
go_1_25_3
50+
go_1_25_ako
5151
];
5252
};
5353
}

go.mod

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

3-
go 1.25.3
3+
go 1.25.5
44

55
require (
66
cloud.google.com/go/kms v1.23.2

tools/openapi2crd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/mongodb/mongodb-atlas-kubernetes/tools/openapi2crd
22

33
go 1.25
44

5-
toolchain go1.25.3
5+
toolchain go1.25.5
66

77
tool (
88
github.com/daixiang0/gci

tools/toolbox/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module toolbox
22

3-
go 1.25.3
3+
go 1.25.5
44

55
tool (
66
fybrik.io/crdoc

0 commit comments

Comments
 (0)