diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index c8995972397b0b4eee5e00b527d99897cf39050c..912f05753e69b6099843aaf7f41e11e7dd8e4872 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -37,19 +37,19 @@ jobs:
 
     - name: "Upgrade Pip"
       run: |
-        python -m pip install -v --upgrade pip
+        python -m pip install --unstable-feature=resolver -v --upgrade pip
 
     - name: "Install CI Dependencies"
       run: |
-        python -m pip install -v wheel coverage
+        python -m pip install --unstable-feature=resolver -v wheel coverage
 
     - name: "Install Test Dependencies"
       run: |
-        python -m pip install -v -r test-requirements.txt
+        python -m pip install --unstable-feature=resolver -v -r test-requirements.txt
 
     - name: "Install ZKAPAuthorizer"
       run: |
-        python -m pip install -v ./
+        python -m pip install --unstable-feature=resolver -v ./
 
     - name: "Dump Python Environment"
       run: |