From 52b3ae7c30a4aea791bfb477dbc83eb39c301a9a Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 9 Mar 2023 20:51:46 +0000 Subject: [PATCH] Use yesterday's rustc on OSX as the release binaries were built with it --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d612a3db..ce0afd2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -352,6 +352,10 @@ jobs: fail-fast: false runs-on: ${{ matrix.platform }} steps: + - name: Temporarily use rustc from yesterday + run: | + rustup install 1.67.1 + rustup default 1.67.1 - name: Install other Rust platforms run: rustup target install aarch64-apple-darwin - name: Checkout source code -- 2.30.2