From 5673e3325a867791629f0639da7712e6b7a5b2b8 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 6 Mar 2024 15:52:28 +0900 Subject: [PATCH] chore: update actions/checkout and replace unmaintained actions-rs/cargo (#138) --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb73a4b..c875194 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build run: cargo build --verbose - name: Build with OTel feature @@ -22,7 +22,4 @@ jobs: - name: Run tests with OTel feature run: cargo test --verbose --features otel - name: rustfmt - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check + run: cargo fmt --all --check