From 6a03758284d1285c00e6b0644af5614526f25846 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Mon, 9 Sep 2024 10:25:12 +0100 Subject: [PATCH] Switch from actions-rs/toolchain to dtolnay/rust-toolchain Also update checkout action because why not --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e46e943..0fa6019 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,12 +23,10 @@ jobs: allow_failure: true fail-fast: false steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master with: - profile: minimal toolchain: ${{ matrix.rust }} - override: true - name: Check with no feature flags run: cargo check --verbose --no-default-features continue-on-error: ${{ matrix.allow_failure }}