From 3d10dce38c0045c417d0e3c124a2cae894af6dcf Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Thu, 18 Jan 2024 00:25:01 +0100 Subject: [PATCH] Update GitHub Actions CI The following updates are performed: * update actions/checkout to v4 * replace unmaintained actions-rs/toolchain by dtolnay/rust-toolchain --- .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 1d8c7a3..304ae24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,12 +23,10 @@ jobs: - beta - nightly steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} - default: true - profile: minimal - run: rustup component add rustfmt-preview - name: cargo fmt --all -- --check if stable run: |