fix(ci): add apt-get update before installing packages

This commit is contained in:
Graham McIntire 2026-03-05 18:32:01 -06:00
parent 421ff56a40
commit 149f3d1b3a
No known key found for this signature in database

View file

@ -61,7 +61,9 @@ jobs:
${{ runner.os }}-mix-
- name: Install system dependencies
run: sudo apt-get install -y --no-install-recommends libsnmp-dev snmp-mibs-downloader postgresql-client
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends libsnmp-dev snmp-mibs-downloader postgresql-client
- name: Install Elixir dependencies
run: mix deps.get --only test