Skip to content

Commit 261daec

Browse files
authored
Update for bazel 9 and protobuf 33.4 (#274)
* Bazel 9 cleans up a deprecated flag that is still lingering, but should be a no-op. * Update workflows to use protobuf 33.4
1 parent d0a7fc0 commit 261daec

File tree

5 files changed

+223
-65
lines changed

5 files changed

+223
-65
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions: read-all
66

77
# update in build.yml and codeql.yml at same time
88
env:
9-
PROTOC_VERSION: "33.0"
9+
PROTOC_VERSION: "33.4"
1010

1111
jobs:
1212
build:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: read-all
1515

1616
# update in build.yml and codeql.yml at same time
1717
env:
18-
PROTOC_VERSION: "31.0"
18+
PROTOC_VERSION: "33.4"
1919

2020
on:
2121
push:

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module(name = "protobuf_javascript", version = "4.0.2-rc7") # updated by release action
44

5-
bazel_dep(name = "abseil-cpp", version = "20250512.1")
6-
bazel_dep(name = "protobuf", version = "33.0", repo_name = "com_google_protobuf")
5+
bazel_dep(name = "abseil-cpp", version = "20250814.1")
6+
bazel_dep(name = "protobuf", version = "33.4", repo_name = "com_google_protobuf")
77
bazel_dep(name = "rules_cc", version = "0.2.15")
88
bazel_dep(name = "rules_pkg", version = "1.0.1", dev_dependency = True)

0 commit comments

Comments
 (0)