Skip to content

Commit 3dab2db

Browse files
Upgrade go to 1.23.6
2 parents d59c727 + d7e6cf6 commit 3dab2db

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
golang 1.23.5
1+
golang 1.23.6
22
nodejs 20.9.0
33
python 3.12.1

cmd/authgear/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN make authui GIT_HASH=$GIT_HASH
1515

1616
# Stage 1: Build the Go binary
17-
FROM quay.io/theauthgear/golang:1.23.5-noble AS stage1
17+
FROM quay.io/theauthgear/golang:1.23.6-noble AS stage1
1818

1919
# Install build time C dependencies
2020
RUN apt-get update && apt-get install -y --no-install-recommends \

cmd/portal/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ COPY ./portal .
2626
RUN npm run build
2727

2828
# Stage 1: Build the Go binary
29-
FROM quay.io/theauthgear/golang:1.23.5-noble AS stage1
29+
FROM quay.io/theauthgear/golang:1.23.6-noble AS stage1
3030

3131
# Install build time C dependencies
3232
RUN apt-get update && apt-get install -y --no-install-recommends \

custombuild/cmd/authgearx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN make authui GIT_HASH=$GIT_HASH
1515

1616
# Stage 1: Build the Go binary
17-
FROM quay.io/theauthgear/golang:1.23.5-noble AS stage1
17+
FROM quay.io/theauthgear/golang:1.23.6-noble AS stage1
1818

1919
# Install build time C dependencies
2020
RUN apt-get update && apt-get install -y --no-install-recommends \

custombuild/cmd/portalx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ COPY ./portal .
2626
RUN npm run build
2727

2828
# Stage 1: Build the Go binary
29-
FROM quay.io/theauthgear/golang:1.23.5-noble AS stage1
29+
FROM quay.io/theauthgear/golang:1.23.6-noble AS stage1
3030

3131
# Install build time C dependencies
3232
RUN apt-get update && apt-get install -y --no-install-recommends \

custombuild/go.mod

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

3-
go 1.23.5
3+
go 1.23.6
44

55
replace github.com/authgear/authgear-server v0.0.0 => ../
66

e2e/go.mod

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

3-
go 1.23.5
3+
go 1.23.6
44

55
replace github.com/authgear/authgear-server v0.0.0 => ../
66

flake.nix

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
let
2121
pkgs = import nixpkgs {
2222
inherit system;
23-
# As of 2025-02-03, 1.23.5 is still unavailable in nixpkgs-unstable, so we need to use overlay to build 1.23.5 ourselves.
23+
# As of 2025-02-07, 1.23.6 is still unavailable in nixpkgs-unstable, so we need to use overlay to build 1.23.6 ourselves.
2424
overlays = [
2525
(final: prev: {
2626
go = (
2727
prev.go.overrideAttrs {
28-
version = "1.23.5";
28+
version = "1.23.6";
2929
src = prev.fetchurl {
30-
url = "https://go.dev/dl/go1.23.5.src.tar.gz";
31-
hash = "sha256-pvP0u9PmvdYm95tmjyEvu1ZJ2vdQhPt5tnigrk2XQjs=";
30+
url = "https://go.dev/dl/go1.23.6.src.tar.gz";
31+
hash = "sha256-A5xbBOZSedrO7opvcecL0Fz1uAF4K293xuGeLtBREiI=";
3232
};
3333
}
3434
);
@@ -100,10 +100,10 @@
100100
name = "govulncheck";
101101
src = pkgs.fetchgit {
102102
url = "https://go.googlesource.com/vuln";
103-
rev = "refs/tags/v1.1.3";
104-
hash = "sha256-ydJ8AeoCnLls6dXxjI05+THEqPPdJqtAsKTriTIK9Uc=";
103+
rev = "refs/tags/v1.1.4";
104+
hash = "sha256-d1JWh/K+65p0TP5vAQbSyoatjN4L5nm3VEA+qBSrkAA=";
105105
};
106-
vendorHash = "sha256-jESQV4Na4Hooxxd0RL96GHkA7Exddco5izjnhfH6xTg=";
106+
vendorHash = "sha256-MSTKDeWVxD2Fa6fNoku4EwFwC90XZ5acnM67crcgXDg=";
107107
subPackages = [ "cmd/govulncheck" ];
108108
# checkPhase by default run tests. Running tests will result in build error.
109109
# So we skip it.
@@ -114,10 +114,10 @@
114114
name = "goimports";
115115
src = pkgs.fetchgit {
116116
url = "https://go.googlesource.com/tools";
117-
rev = "refs/tags/v0.28.0";
118-
hash = "sha256-BCxsVz4f2h75sj1LzDoKvQ9c8P8SYjcaQE9CdzFdt3w=";
117+
rev = "refs/tags/v0.29.0";
118+
hash = "sha256-h3UjRY1w0AyONADNiLhxXt9/z7Tb/40FJI8rKGXpBeM=";
119119
};
120-
vendorHash = "sha256-MSir25OEmQ7hg0OAOjZF9J5a5SjlJXdOc523uEBSOSs=";
120+
vendorHash = "sha256-5JE4/2yn5emRuq4wGTeNnAJa+QZayDq2n+dL3gMML/M=";
121121
subPackages = [ "cmd/goimports" ];
122122
})
123123

@@ -126,8 +126,8 @@
126126
src = pkgs.fetchFromGitHub {
127127
owner = "grafana";
128128
repo = "xk6";
129-
rev = "v0.13.3";
130-
sha256 = "sha256-lmtGljTLbcOkE+CYupocM9gmHsTVnpPT9sXOKVuFOww=";
129+
rev = "v0.14.0";
130+
sha256 = "sha256-s68kM8HPl+hSsiXbO1nO3D3R8MN9fABc9M+30jDCfek=";
131131
};
132132
vendorHash = null;
133133
doCheck = false;

go.mod

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

33
// go1.21 supports toolchain
44
// See https://go.dev/doc/toolchain
5-
go 1.23.5
5+
go 1.23.6
66

77
require (
88
github.com/Masterminds/sprig v2.22.0+incompatible

k6/go.mod

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

33
// go1.21 supports toolchain
44
// See https://go.dev/doc/toolchain
5-
go 1.23.5
5+
go 1.23.6
66

77
require (
88
github.com/google/uuid v1.6.0

0 commit comments

Comments
 (0)