From f70330d7bd96548fddaa299e5f856d554d40e08d Mon Sep 17 00:00:00 2001 From: Nathaniel Ledford Date: Tue, 18 Jun 2024 18:00:15 -0400 Subject: [PATCH] Fix issues with github workflow --- .github/workflows/ci.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 67bf62b..7527ef4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,6 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - profile: minimal components: rustfmt - name: Cargo cache uses: actions/cache@v2 @@ -45,7 +44,6 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - profile: minimal components: clippy - name: Cargo cache uses: actions/cache@v2 @@ -59,10 +57,9 @@ jobs: with: path: target key: ${{ runner.os }}-build-rust_stable-check-${{ hashFiles('**/Cargo.toml') }} - - uses: actions-rs/clippy-check@v1 + - uses: auguwu/clippy-action@1.2.1 with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all --all-features + token: ${{secrets.GITHUB_TOKEN}} build: runs-on: ubuntu-latest