ci: apt-get update before installing libsqlcipher-dev

This commit is contained in:
pyr0ball 2026-03-15 16:37:46 -07:00
parent 5527fe9bf8
commit 062f249ef9

View file

@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get install -y libsqlcipher-dev
run: sudo apt-get update -q && sudo apt-get install -y libsqlcipher-dev
- name: Set up Python
uses: actions/setup-python@v5