Skip to content

Commit

Permalink
chore: Pin version of cross and cargo-deb
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz committed Feb 20, 2024
1 parent 5bcdb12 commit 22b4b41
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:
- cron: "0 1 * * 1-5"
workflow_dispatch:

env:
VERSION_CROSS: 0.2.4
VERSION_CARGO_DEB: 1.44.1

jobs:
checks:
name: Code checks
Expand Down Expand Up @@ -157,7 +161,7 @@ jobs:
shell: bash
run: |
case ${{ matrix.job.target }} in
*-linux-gnu*) cargo install cargo-deb ;;
*-linux-gnu*) cargo install --version ${{ env.VERSION_CARGO_DEB }} cargo-deb ;;
esac
case ${{ matrix.job.target }} in
Expand All @@ -175,7 +179,7 @@ jobs:
;;
esac
cargo install cross --git https://github.com/cross-rs/cross
cargo install --version ${{ env.VERSION_CROSS }} cargo-cross
- name: Windows > Install LLVM and Clang # required for bindgen to work, see https://github.com/rust-lang/rust-bindgen/issues/1797
uses: KyleMayes/install-llvm-action@v1
Expand Down

0 comments on commit 22b4b41

Please sign in to comment.