File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ local_path_override(
15
15
# see https://registry.bazel.build/ for a list of available packages
16
16
17
17
bazel_dep (name = "platforms" , version = "0.0.11" )
18
- bazel_dep (name = "rules_go" , version = "0.50 .1" )
18
+ bazel_dep (name = "rules_go" , version = "0.56 .1" )
19
19
bazel_dep (name = "rules_pkg" , version = "1.0.1" )
20
20
bazel_dep (name = "rules_nodejs" , version = "6.2.0-codeql.1" )
21
21
bazel_dep (name = "rules_python" , version = "0.40.0" )
@@ -263,7 +263,7 @@ use_repo(
263
263
)
264
264
265
265
go_sdk = use_extension ("@rules_go//go:extensions.bzl" , "go_sdk" )
266
- go_sdk .download (version = "1.24 .0" )
266
+ go_sdk .download (version = "1.25 .0" )
267
267
268
268
go_deps = use_extension ("@gazelle//:extensions.bzl" , "go_deps" )
269
269
go_deps .from_file (go_mod = "//go/extractor:go.mod" )
Original file line number Diff line number Diff line change 4
4
go-test-version :
5
5
description : Which Go version to use for running the tests
6
6
required : false
7
- default : " ~1.24 .0"
7
+ default : " ~1.25 .0"
8
8
run-code-checks :
9
9
description : Whether to run formatting, code and qhelp generation checks
10
10
required : false
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
)
13
13
14
14
var minGoVersion = util .NewSemVer ("1.11" )
15
- var maxGoVersion = util .NewSemVer ("1.24 " )
15
+ var maxGoVersion = util .NewSemVer ("1.25 " )
16
16
17
17
type versionInfo struct {
18
18
goModVersion util.SemVer // The version of Go found in the go directive in the `go.mod` file.
Original file line number Diff line number Diff line change 1
1
module github.com/github/codeql-go/extractor
2
2
3
- go 1.24
3
+ go 1.25
4
4
5
- toolchain go1.24 .0
5
+ toolchain go1.25 .0
6
6
7
7
// when updating this, run
8
8
// bazel run @rules_go//go -- mod tidy
You can’t perform that action at this time.
0 commit comments