Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sunchao committed Feb 16, 2024
1 parent fbdf5c7 commit 32c2d68
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/java-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
runs:
using: "composite"
steps:
- name: Run cargo build
- name: Run Cargo build
shell: bash
run: |
cd core
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/rust-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
runs:
using: "composite"
steps:
- name: Check cargo fmt
- name: Check Cargo fmt
shell: bash
run: |
cd core
cargo fmt --all -- --check --color=never
- name: Check cargo clippy
- name: Check Cargo clippy
shell: bash
run: |
cd core
Expand All @@ -51,7 +51,7 @@ runs:
cd common
../mvnw clean compile -DskipTests
- name: Run cargo test
- name: Run Cargo test
shell: bash
run: |
cd core
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
apt-get update
apt-get install -y protobuf-compiler
- name: Install JDK 17
- name: Install JDK ${{inputs.jdk-version}}
uses: actions/setup-java@v4
with:
distribution: 'adopt'
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-macos-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
echo "$HOME/d/protoc/bin" >> $GITHUB_PATH
export PATH=$PATH:$HOME/d/protoc/bin
- name: Install JDK 17
- name: Install JDK ${{inputs.jdk-version}}
uses: actions/setup-java@v4
with:
distribution: 'adopt'
Expand Down

0 comments on commit 32c2d68

Please sign in to comment.