From f54fdefb7bf8dca179ed73202a954024db01901f Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Mon, 14 Oct 2024 08:51:29 +0200 Subject: [PATCH] bump toolchain --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b7d5a6..742f50a 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: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@1.81 - run: cargo test --all-targets --all-features fmt: @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@1.81 with: components: rustfmt - run: cargo fmt --all --check @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@1.81 with: components: clippy - run: cargo clippy --all-targets -- -D warnings