From 07493aa762234ac2feea9e1c48d35731c5949747 Mon Sep 17 00:00:00 2001 From: lucasliang Date: Thu, 11 Jan 2024 15:17:18 +0800 Subject: [PATCH] Revision. Signed-off-by: lucasliang --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 74ce0874..df54306c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -27,7 +27,7 @@ jobs: sharedKey: ${{ matrix.os }} - name: Cache dependencies if: ${{ matrix.os == 'ubuntu-latest' }} - run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov --version 0.8.5; fi + run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install --locked grcov --version 0.8.9; fi - name: Format run: | make format @@ -60,7 +60,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.61.0 + toolchain: 1.63.0 override: true components: rustfmt, clippy, rust-src - uses: Swatinem/rust-cache@v1 @@ -94,7 +94,7 @@ jobs: with: sharedKey: ubuntu-latest - name: Install grcov - run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install --locked grcov --version 0.8.5; fi + run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install --locked grcov --version 0.8.9; fi - name: Run tests run: | make test