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(
1515# see https://registry.bazel.build/ for a list of available packages
1616
1717bazel_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" )
1919bazel_dep (name = "rules_pkg" , version = "1.0.1" )
2020bazel_dep (name = "rules_nodejs" , version = "6.2.0-codeql.1" )
2121bazel_dep (name = "rules_python" , version = "0.40.0" )
@@ -263,7 +263,7 @@ use_repo(
263263)
264264
265265go_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" )
267267
268268go_deps = use_extension ("@gazelle//:extensions.bzl" , "go_deps" )
269269go_deps .from_file (go_mod = "//go/extractor:go.mod" )
Original file line number Diff line number Diff line change 44 go-test-version :
55 description : Which Go version to use for running the tests
66 required : false
7- default : " ~1.24 .0"
7+ default : " ~1.25 .0"
88 run-code-checks :
99 description : Whether to run formatting, code and qhelp generation checks
1010 required : false
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
1212)
1313
1414var minGoVersion = util .NewSemVer ("1.11" )
15- var maxGoVersion = util .NewSemVer ("1.24 " )
15+ var maxGoVersion = util .NewSemVer ("1.25 " )
1616
1717type versionInfo struct {
1818 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 11module github.com/github/codeql-go/extractor
22
3- go 1.24
3+ go 1.25
44
5- toolchain go1.24 .0
5+ toolchain go1.25 .0
66
77// when updating this, run
88// bazel run @rules_go//go -- mod tidy
You can’t perform that action at this time.
0 commit comments