Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 964fc12

Browse files
committed
Fix CI
1 parent 8fc9686 commit 964fc12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
run: "./ci/install-protobuf.sh"
136136
shell: bash
137137
- name: install protobuf-codegen
138-
run: cargo install protobuf-codegen --version=2.23
138+
run: cargo install protobuf-codegen --version=2.23.0
139139
shell: bash
140140
- name: gen
141141
run: grpc-compiler/test-protoc-plugin/gen.sh

ci-gen/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fn test_protoc_plugin_job() -> Job {
7373
steps.push(install_protobuf_step());
7474
steps.push(Step::run(
7575
"install protobuf-codegen",
76-
"cargo install protobuf-codegen --version=2.23",
76+
"cargo install protobuf-codegen --version=2.23.0",
7777
));
7878
steps.push(Step::run("gen", "grpc-compiler/test-protoc-plugin/gen.sh"));
7979
steps.push(Step::run(

0 commit comments

Comments
 (0)