From 13492e2d6eb6b863ac3696e24726844477a7e388 Mon Sep 17 00:00:00 2001 From: Timo Sand Date: Sat, 21 Feb 2026 14:24:46 +0200 Subject: [PATCH 1/2] Update `go.mod` and add `go.sum` Signed-off-by: Timo Sand --- go.mod | 5 +++++ go.sum | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 go.sum diff --git a/go.mod b/go.mod index cecc058..bf42036 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,8 @@ module github.com/shurcooL/githubv4 go 1.19 + +require ( + github.com/shurcooL/graphql v0.0.0-20240915155400-7ee5256398cf + golang.org/x/oauth2 v0.35.0 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..12465aa --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/shurcooL/graphql v0.0.0-20240915155400-7ee5256398cf h1:o1uxfymjZ7jZ4MsgCErcwWGtVKSiNAXtS59Lhs6uI/g= +github.com/shurcooL/graphql v0.0.0-20240915155400-7ee5256398cf/go.mod h1:9dIRpgIY7hVhoqfe0/FcYp0bpInZaT7dc3BYOprrIUE= +golang.org/x/oauth2 v0.35.0 h1:Mv2mzuHuZuY2+bkyWXIHMfhNdJAdwW3FuWeCPYN5GVQ= +golang.org/x/oauth2 v0.35.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA= From c801f4dc75f252079f92f00975412286ff7efb70 Mon Sep 17 00:00:00 2001 From: Timo Sand Date: Sat, 21 Feb 2026 14:27:52 +0200 Subject: [PATCH 2/2] Update go version to`1.24` Signed-off-by: Timo Sand --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index bf42036..4d43550 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/shurcooL/githubv4 -go 1.19 +go 1.24.0 + +toolchain go1.24.4 require ( github.com/shurcooL/graphql v0.0.0-20240915155400-7ee5256398cf