From 826bc5ec1de1f2f182fd7e8a65a9f756c4b4da7f Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Thu, 14 Sep 2023 09:05:30 +0300 Subject: [PATCH] AVRO-3855: [Rust] Fix clippy error with Rust 1.65.0 Fix action warning: ``` clippy_check (stable) Unexpected input(s) 'rust-version', valid inputs are ['toolchain', 'targets', 'target', 'components'] ``` https://github.com/apache/avro/actions/runs/6177393289?pr=2494 Signed-off-by: Martin Tzvetanov Grigorov --- .github/workflows/test-lang-rust-clippy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-lang-rust-clippy.yml b/.github/workflows/test-lang-rust-clippy.yml index 13bf179aa1c..e0287863160 100644 --- a/.github/workflows/test-lang-rust-clippy.yml +++ b/.github/workflows/test-lang-rust-clippy.yml @@ -52,7 +52,6 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@nightly with: - rust-version: ${{ matrix.rust }} toolchain: ${{ matrix.rust }} components: clippy - run: cargo clippy --all-features --all-targets -- -Dclippy::all -Dunused_imports