Skip to content

Commit

Permalink
ci: install openssl before running cargo-udeps
Browse files Browse the repository at this point in the history
GitHub is now using Ubuntu 24.04 instead of 22.04, and this new image apparently doesn't have openssl installed.
  • Loading branch information
plusvic committed Dec 20, 2024
1 parent a881795 commit c65c031
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/code_health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly

Expand Down

0 comments on commit c65c031

Please sign in to comment.