Skip to content

Commit

Permalink
ci: fix broken packages in Github Actions
Browse files Browse the repository at this point in the history
Unconditionally sudo apt-get update to get the latest package listing
which should correct issues with packages failing to install.
  • Loading branch information
alanxz committed Oct 24, 2023
1 parent 7dab48f commit bba66d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
submodules: true
- name: Install Prerequisites
shell: bash
run: sudo apt install -y ninja-build libpopt-dev
run: |
sudo apt update
sudo apt install -y ninja-build libpopt-dev
- name: Configure Build & Test
shell: bash
Expand Down

0 comments on commit bba66d8

Please sign in to comment.