From 3941e469e5132aa89d4fb8d09e7a7bb539feb878 Mon Sep 17 00:00:00 2001 From: Daulet Amirkhanov Date: Fri, 15 Aug 2025 09:41:40 +0100 Subject: [PATCH] chore: add step to rebuild uv lockfile in CI workflow --- .github/actions/cognee_setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/cognee_setup/action.yml b/.github/actions/cognee_setup/action.yml index 869582585..9ae669b53 100644 --- a/.github/actions/cognee_setup/action.yml +++ b/.github/actions/cognee_setup/action.yml @@ -24,6 +24,12 @@ runs: uses: astral-sh/setup-uv@v4 with: enable-cache: true + + - name: Rebuild uv lockfile + shell: bash + run: | + rm uv.lock + uv lock - name: Install dependencies shell: bash