Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 8eca3de

Browse files
deps: protobuf 3.19.6 and gRPC 1.45.2 to 2.10.x (#855)
* deps: protobuf 3.19.6 and gRPC 1.45.2 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 35dc8e8 commit 8eca3de

2 files changed

Lines changed: 65 additions & 56 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 63 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,87 @@
1-
'on':
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
# Github action job to test core java library features on
15+
# downstream client libraries before they are released.
16+
on:
217
push:
318
branches:
4-
- 2.10.x
5-
pull_request: null
19+
- main
20+
pull_request:
621
name: ci
722
jobs:
823
units:
924
runs-on: ubuntu-latest
1025
strategy:
1126
fail-fast: false
1227
matrix:
13-
java:
14-
- 8
15-
- 11
16-
- 17
28+
java: [8, 11, 17]
1729
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/setup-java@v3
20-
with:
21-
distribution: zulu
22-
java-version: ${{matrix.java}}
23-
- run: java -version
24-
- run: .kokoro/build.sh
25-
env:
26-
JOB_TYPE: test
30+
- uses: actions/checkout@v3
31+
- uses: actions/setup-java@v3
32+
with:
33+
distribution: zulu
34+
java-version: ${{matrix.java}}
35+
- run: java -version
36+
- run: .kokoro/build.sh
37+
env:
38+
JOB_TYPE: test
2739
windows:
2840
runs-on: windows-latest
2941
steps:
30-
- uses: actions/checkout@v3
31-
- uses: actions/setup-java@v3
32-
with:
33-
distribution: zulu
34-
java-version: 8
35-
- run: java -version
36-
- run: .kokoro/build.bat
37-
env:
38-
JOB_TYPE: test
42+
- uses: actions/checkout@v3
43+
- uses: actions/setup-java@v3
44+
with:
45+
distribution: zulu
46+
java-version: 8
47+
- run: java -version
48+
- run: .kokoro/build.bat
49+
env:
50+
JOB_TYPE: test
3951
dependencies:
4052
runs-on: ubuntu-latest
4153
strategy:
4254
matrix:
43-
java:
44-
- 8
45-
- 11
46-
- 17
55+
java: [8, 11, 17]
4756
steps:
48-
- uses: actions/checkout@v3
49-
- uses: actions/setup-java@v3
50-
with:
51-
distribution: zulu
52-
java-version: ${{matrix.java}}
53-
- run: java -version
54-
- run: .kokoro/dependencies.sh
57+
- uses: actions/checkout@v3
58+
- uses: actions/setup-java@v3
59+
with:
60+
distribution: zulu
61+
java-version: ${{matrix.java}}
62+
- run: java -version
63+
- run: .kokoro/dependencies.sh
5564
lint:
5665
runs-on: ubuntu-latest
5766
steps:
58-
- uses: actions/checkout@v3
59-
- uses: actions/setup-java@v3
60-
with:
61-
distribution: zulu
62-
java-version: 11
63-
- run: java -version
64-
- run: .kokoro/build.sh
65-
env:
66-
JOB_TYPE: lint
67+
- uses: actions/checkout@v3
68+
- uses: actions/setup-java@v3
69+
with:
70+
distribution: zulu
71+
java-version: 11
72+
- run: java -version
73+
- run: .kokoro/build.sh
74+
env:
75+
JOB_TYPE: lint
6776
clirr:
6877
runs-on: ubuntu-latest
6978
steps:
70-
- uses: actions/checkout@v3
71-
- uses: actions/setup-java@v3
72-
with:
73-
distribution: zulu
74-
java-version: 8
75-
- run: java -version
76-
- run: .kokoro/build.sh
77-
env:
78-
JOB_TYPE: clirr
79+
- uses: actions/checkout@v3
80+
- uses: actions/setup-java@v3
81+
with:
82+
distribution: zulu
83+
java-version: 8
84+
- run: java -version
85+
- run: .kokoro/build.sh
86+
env:
87+
JOB_TYPE: clirr

first-party-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
<properties>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5757
<site.installationModule>${project.artifactId}</site.installationModule>
58-
<grpc.version>1.45.1</grpc.version>
58+
<grpc.version>1.45.2</grpc.version>
5959
<gax.version>2.16.0</gax.version>
6060
<grpc-gcp.version>1.1.0</grpc-gcp.version>
6161
<guava.version>31.1-jre</guava.version>
62-
<protobuf.version>3.19.4</protobuf.version>
62+
<protobuf.version>3.19.6</protobuf.version>
6363
<google.api-common.version>2.1.5</google.api-common.version>
6464
<google.common-protos.version>2.8.3</google.common-protos.version>
6565
<google.core.version>2.6.0</google.core.version>

0 commit comments

Comments
 (0)