Skip to content

Commit ff288d7

Browse files
authored
Merge pull request #20210 from github/jketema/go-1.25
Go: Update Go version to 1.25.0
2 parents 4c263c0 + 4b215d5 commit ff288d7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ local_path_override(
1515
# see https://registry.bazel.build/ for a list of available packages
1616

1717
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")
1919
bazel_dep(name = "rules_pkg", version = "1.0.1")
2020
bazel_dep(name = "rules_nodejs", version = "6.2.0-codeql.1")
2121
bazel_dep(name = "rules_python", version = "0.40.0")
@@ -263,7 +263,7 @@ use_repo(
263263
)
264264

265265
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")
267267

268268
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
269269
go_deps.from_file(go_mod = "//go/extractor:go.mod")

go/actions/test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
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

go/extractor/autobuilder/build-environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
var minGoVersion = util.NewSemVer("1.11")
15-
var maxGoVersion = util.NewSemVer("1.24")
15+
var maxGoVersion = util.NewSemVer("1.25")
1616

1717
type versionInfo struct {
1818
goModVersion util.SemVer // The version of Go found in the go directive in the `go.mod` file.

go/extractor/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module 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

0 commit comments

Comments
 (0)