Skip to content

Commit

Permalink
github-workflows: pin down the proto and grpc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
julieta-311 committed Dec 19, 2024
1 parent 06b143b commit c25f9a3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
- name: Protoc version
run: protoc --version

- run: go install google.golang.org/protobuf/...@latest
- run: go install google.golang.org/protobuf/...@v1.36.0

- name: Install protocol compiler plugins
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
- run: go install google.golang.org/grpc/...@latest
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.0
- run: go install google.golang.org/grpc/...@v1.56.3
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.36.0

- name: Run protoc
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
- name: Protoc version
run: protoc --version

- run: go install google.golang.org/protobuf/...@latest
- run: go install google.golang.org/protobuf/...@v1.36.0

- name: Install protocol compiler plugins
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
- run: go install google.golang.org/grpc/...@latest
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.0
- run: go install google.golang.org/grpc/...@v1.56.3
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.36.0

- name: Run protoc
run: |
Expand Down

0 comments on commit c25f9a3

Please sign in to comment.