From 21aec4e8e0ff3ef8d1a8cdd2b130fb0575ac1852 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 2 Aug 2023 20:25:20 +0700 Subject: [PATCH] ci: Update toolchain action. The `actions-rs` actions haven't been maintained in some time and trigger a number of warnings about use of deprecated functionality. --- .github/workflows/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 391443d..22e54e1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,11 +35,9 @@ jobs: run: sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev - name: Install toolchain - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: - profile: minimal toolchain: ${{ matrix.toolchain }} - override: true - name: Cargo build run: cargo build --verbose