Skip to content

Commit

Permalink
upgrade checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Oct 31, 2023
1 parent 81d23ca commit c845f42
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash

./gradlew spotlessApply > /dev/null

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
timeout-minutes: 10
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
distribution: 'corretto'
cache: 'gradle'

- name: Build with Gradle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
timeout-minutes: 10
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
distribution: 'corretto'
cache: 'gradle'

- name: Decrypt secring.gpg
Expand Down
1 change: 0 additions & 1 deletion grpc-starters/grpc-server-boot-starter/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dependencies {
api(project(":grpc-boot-autoconfigure:grpc-server-boot-autoconfigure"))
runtimeOnly("io.grpc:grpc-netty-shaded")
api("io.grpc:grpc-services")

optionalSupportApi("io.grpc:grpc-netty")

Expand Down

0 comments on commit c845f42

Please sign in to comment.