This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-rust.git
The following commit(s) were added to refs/heads/master by this push:
new 45d9198 Replace actions-rs actions (#68)
45d9198 is described below
commit 45d9198f1954bdddae4d303b2af5a42faaa07cb4
Author: Jacob Wujciak-Jens <[email protected]>
AuthorDate: Tue Jun 10 01:25:40 2025 +0200
Replace actions-rs actions (#68)
---
.github/workflows/codecov.yaml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml
index 8005606..1768e6e 100644
--- a/.github/workflows/codecov.yaml
+++ b/.github/workflows/codecov.yaml
@@ -32,11 +32,9 @@ jobs:
submodules: true
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ - run: |
+ rustup toolchain add --profile=minimal stable
+ rustup override set stable
- name: Install and Run Tarpaulin
run: |
cargo install cargo-tarpaulin