Skip to content

Commit 3737352

Browse files
authored
Merge branch 'main' into renovate/major-guava-monorepo
2 parents ef407f0 + e169dbc commit 3737352

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
- uses: actions/setup-java@v3
18+
with:
19+
distribution: "temurin"
20+
java-version: "18"
21+
cache: "gradle"
22+
- name: Validate Gradle wrapper
23+
uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4
24+
- name: Build package
25+
run: ./gradlew build
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
implementation 'com.google.guava:guava:32.1.2-jre'
3131
implementation "io.grpc:grpc-protobuf:1.57.1"
3232
implementation "io.grpc:grpc-stub:1.57.0"
33-
implementation "io.grpc:grpc-services:1.57.0"
33+
implementation "io.grpc:grpc-services:1.57.1"
3434
implementation "io.grpc:grpc-testing:1.57.1"
3535
implementation "io.cloudquery:plugin-pb-java:0.0.5"
3636
}

0 commit comments

Comments
 (0)