Skip to content

Commit

Permalink
ci: fix dependencies installing for act
Browse files Browse the repository at this point in the history
  • Loading branch information
vaaandark committed Nov 25, 2023
1 parent 346b344 commit ca0845f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- run: sudo apt-get install libssl-dev libsqlite3-dev libasound2-dev
- run: sudo apt-get update && sudo apt-get install -y libssl-dev libsqlite3-dev libasound2-dev
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
profile: minimal
toolchain: stable
override: true
- run: sudo apt-get install libssl-dev libsqlite3-dev libasound2-dev
- run: sudo apt-get update && sudo apt-get install -y libssl-dev libsqlite3-dev libasound2-dev
- uses: actions-rs/cargo@v1
with:
command: check
Expand All @@ -29,7 +29,7 @@ jobs:
profile: minimal
toolchain: stable
override: true
- run: sudo apt-get install libssl-dev libsqlite3-dev libasound2-dev
- run: sudo apt-get update && sudo apt-get install -y libssl-dev libsqlite3-dev libasound2-dev
- name: Checkout submodules
run: |
git submodule init
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
toolchain: stable
override: true
components: clippy
- run: sudo apt-get install libssl-dev libsqlite3-dev libasound2-dev
- run: sudo apt-get update && sudo apt-get install -y libssl-dev libsqlite3-dev libasound2-dev
- uses: actions-rs/cargo@v1
with:
command: clippy
Expand Down

0 comments on commit ca0845f

Please sign in to comment.