Skip to content

Commit 8012b16

Browse files
authored
fix: build for bazel 9 (#1215)
Observed failures on #1214 and #1213 for bazel 9. This PR should fix them and unblock the other PRs.
1 parent bec1a7d commit 8012b16

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.bcr/patches/go_dev_dep.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ index eec026a..4854935 100644
1111
)
1212
bazel_dep(
1313
name = "rules_go",
14-
version = "0.58.3",
14+
version = "0.59.0",
1515
repo_name = "io_bazel_rules_go",
1616
- # In released versions: dev_dependency = True
1717
+ dev_dependency = True,

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ bazel_dep(
4141
)
4242
bazel_dep(
4343
name = "rules_go",
44-
version = "0.58.3",
44+
version = "0.59.0",
4545
repo_name = "io_bazel_rules_go",
4646
# In released versions: dev_dependency = True
4747
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/bazel-contrib/bazel-lib
33
go 1.24.6
44

55
require (
6-
github.com/bazelbuild/rules_go v0.55.0
6+
github.com/bazelbuild/rules_go v0.59.0
77
github.com/bmatcuk/doublestar/v4 v4.7.1
88
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948
99
golang.org/x/sys v0.30.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/bazelbuild/rules_go v0.55.0 h1:S8X/b/Oygw/Dtv7NuyW7ht0QwdynMEdXQqYigX5A1KY=
2-
github.com/bazelbuild/rules_go v0.55.0/go.mod h1:T90Gpyq4HDFlsrvtQa2CBdHNJ2P4rAu/uUTmQbanzf0=
1+
github.com/bazelbuild/rules_go v0.59.0 h1:RLhOwYIqeMgBpKelHEWTfIPjA37so3oa/rX+/qqq/P4=
2+
github.com/bazelbuild/rules_go v0.59.0/go.mod h1:Pn30cb4M513fe2rQ6GiJ3q8QyrRsgC7zhuDvi50Lw4Y=
33
github.com/bmatcuk/doublestar/v4 v4.7.1 h1:fdDeAqgT47acgwd9bd9HxJRDmc9UAmPpc+2m0CXv75Q=
44
github.com/bmatcuk/doublestar/v4 v4.7.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
55
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 h1:kx6Ds3MlpiUHKj7syVnbp57++8WpuKPcR5yjLBjvLEA=

0 commit comments

Comments
 (0)