From b368b903eefcea1168eab02a8c864ee9d09afc29 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 2 Oct 2023 12:34:39 -0700 Subject: [PATCH] Update CI. --- .github/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51e98fb..7290db3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,18 +22,16 @@ jobs: steps: - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Native Dependencies (macOS) if: matrix.os.name == 'macOS' run: brew install coreutils - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: - profile: minimal toolchain: ${{ matrix.toolchain }} - override: true - name: Check Features run: ./scripts/test.sh --core @@ -54,14 +52,13 @@ jobs: steps: - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.toolchain }} - target: armv7-unknown-linux-gnueabihf - override: true + targets: armv7-unknown-linux-gnueabihf - name: Build uses: actions-rs/cargo@v1