From f838641115d0f74114749f1a45eb7b5e36586619 Mon Sep 17 00:00:00 2001 From: VKTB <45173816+VKTB@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:16:37 +0000 Subject: [PATCH] Fix CI failure #21 --- .github/workflows/.ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/.ci.yml b/.github/workflows/.ci.yml index 5dc81f4..8a48291 100644 --- a/.github/workflows/.ci.yml +++ b/.github/workflows/.ci.yml @@ -18,7 +18,9 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Install python-ldap system dependencies - run: sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev + run: | + sudo apt-get update + sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev - name: Set up Python uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 @@ -41,7 +43,9 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Install python-ldap system dependencies - run: sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev + run: | + sudo apt-get update + sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev - name: Set up Python uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0