Skip to content

Commit

Permalink
ci: pin to rust 1.80.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Oct 9, 2024
1 parent f573dee commit 8e7dda2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 8e7dda2

Please sign in to comment.