diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 83f3cb24c0180cfd8c7a540812e8436bdab9959c..d9e5e5936e9caf670e65484b96c0bc05c5416a01 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -15,11 +15,9 @@ jobs:
       matrix:
         python-version:
         - "3.13"
-    env:
-      POETRY_VERSION: "2.0.1"
     steps:
     - uses: actions/checkout@v4
-    - name: Cache Poetry
+    - name: Cache uv
       uses: actions/cache@v4
       with:
         path: ~/.uv
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 24f6560bd79734f0020c72aa06428fd4aa29888b..6f0a07b3b2f75e9a3bc4b580acc5fe5a0a791044 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -6,9 +6,6 @@ on:
   pull_request:
 
 
-env:
-  POETRY_VERSION: "2.0.1"
-
 jobs:
   build:
     runs-on: ubuntu-latest
@@ -18,7 +15,7 @@ jobs:
         - "3.13"
     steps:
     - uses: actions/checkout@v3
-    - name: Cache Poetry
+    - name: Cache uv
       uses: actions/cache@v4
       with:
         path: ~/.uv
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3dd8cc265067155745c1ae00ad5d5c160ce236bc..6b541630aceb3c9804be61655c56f271ef533eb3 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,9 +5,6 @@ on:
   push:
     branches: [ james/uv-migration ]
 
-env:
-  POETRY_VERSION: "2.0.1"
-
 jobs:
   build:
     runs-on: ubuntu-latest
@@ -68,7 +65,8 @@ jobs:
         PINECONE_API_BASE_URL: http://localhost:5080
         OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
         COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
-      run: make test
+      run: |
+        make test
     - name: Upload coverage to Codecov
       uses: codecov/codecov-action@v2
       env: