From 062f249ef9aa63b4d6ac90c8275ab670c995c2fa Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Sun, 15 Mar 2026 16:37:46 -0700 Subject: [PATCH] ci: apt-get update before installing libsqlcipher-dev --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f92a189..f956e6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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