From 22219fd88ffcfceee47779638f2382305af8dc9a Mon Sep 17 00:00:00 2001 From: James Lucktaylor Date: Mon, 6 Mar 2023 12:08:32 +0000 Subject: [PATCH] ci(actions/rust): explicitly set up dependencies and toolchain override --- .github/workflows/rust.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4a58b9ccf..14417f25c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -87,6 +87,14 @@ jobs: if: github.event_name == 'schedule' steps: - uses: actions/checkout@v3 + - name: Install needed dependencies + run: | + apt-get update + apt-get install --assume-yes build-essential curl + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true - name: Run cargo build with all features uses: actions-rs/cargo@v1 with: