From 4e0d75ac7df044c1a3516b15b696f3e03b2c49a9 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 2 Jan 2024 14:36:08 -0600 Subject: [PATCH] chore(ci): Ensure latest rust is installed --- .github/workflows/maturin.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/maturin.yml b/.github/workflows/maturin.yml index 08ffdf3eb..75e44e052 100644 --- a/.github/workflows/maturin.yml +++ b/.github/workflows/maturin.yml @@ -23,6 +23,10 @@ jobs: target: [x86_64, x86, aarch64] steps: - uses: actions/checkout@v4 + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + toolchain: stable - name: Build wheels uses: PyO3/maturin-action@v1 with: @@ -43,6 +47,10 @@ jobs: target: [x86_64, aarch64] steps: - uses: actions/checkout@v4 + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + toolchain: stable - name: Build wheels uses: PyO3/maturin-action@v1 with: @@ -63,6 +71,10 @@ jobs: target: [x64, x86] steps: - uses: actions/checkout@v4 + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + toolchain: stable - name: Build wheels uses: PyO3/maturin-action@v1 with: @@ -82,6 +94,10 @@ jobs: target: [x86_64, aarch64] steps: - uses: actions/checkout@v4 + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + toolchain: stable - name: Build wheels uses: PyO3/maturin-action@v1 with: