From a9b6215e4f4accc3959a26a969971983a01f2d95 Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Tue, 14 Nov 2023 09:36:15 +0200 Subject: [PATCH] Update actions in the CI workflow --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f684396..7d888e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ name: CI jobs: ci-linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental || false }} strategy: matrix: @@ -18,12 +18,10 @@ jobs: experimental: true steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master with: - profile: minimal toolchain: ${{ matrix.rust }} - override: true - name: Check code (cortex-m fs) run: cargo check --features "cortex-m fs"