From 8e7dda238788c8f4741b387efb14df81221df1eb Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Wed, 9 Oct 2024 09:08:47 +0200 Subject: [PATCH] ci: pin to rust 1.80.1 Blocked by: https://github.com/notify-rs/notify/pull/643 --- .github/workflows/release.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f957ae10..bc829f0a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,6 +35,9 @@ jobs: strategy: fail-fast: false matrix: + rust: + # switch back to stable once https://github.com/notify-rs/notify/pull/643 is merged + - "1.80.1" target: - x86_64-unknown-linux-gnu - aarch64-unknown-linux-gnu @@ -117,8 +120,8 @@ jobs: - name: Setup | Rust run: | - rustup toolchain install stable --target ${{ matrix.target }} --profile minimal - rustup default stable + rustup toolchain install ${{ matrix.rust }} --target ${{ matrix.target }} --profile minimal + rustup default ${{ matrix.rust }} - name: Setup | Cross if: matrix.cross == 'true'