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