diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index d9e5e5936e9caf670e65484b96c0bc05c5416a01..098611e932a815c6674f1afd9590b8769fca0435 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -34,7 +34,8 @@ jobs:
     #     cache: uv
     - name: Set up Python ${{ matrix.python-version }}
       run: uv venv --python 3.13
-      cache: uv
+      with:
+        cache: uv
     - name: Install dependencies
       run: uv pip install -e .[dev]
     - name: Build docs
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 6f0a07b3b2f75e9a3bc4b580acc5fe5a0a791044..22c1994714d4f07421c89d2f20cdf3935ad67976 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -27,7 +27,8 @@ jobs:
         curl -LsSf https://astral.sh/uv/install.sh | sh
     - name: Set up Python ${{ matrix.python-version }}
       run: uv venv --python 3.13
-      cache: uv
+      with:
+        cache: uv
     - name: Install dependencies
       run: uv pip install -e .[dev]
     - name: Analyzing the code with our lint
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9b437ed7bd05249790b1e6081c0db5251b33c2bc..96c8d011cc6e34b8e0973ab98585937a073a8fae 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,7 +12,8 @@ jobs:
     - uses: actions/checkout@v2
     - name: Set up Python
       run: uv venv --python 3.13
-      cache: uv
+      with:
+        cache: uv
     - name: Install uv
       run: curl -LsSf https://astral.sh/uv/install.sh | sh
     - name: Install dependencies
@@ -27,7 +28,8 @@ jobs:
     - uses: actions/checkout@v2
     - name: Set up Python
       run: uv venv --python 3.13
-      cache: uv
+      with:
+        cache: uv
     - name: Install uv
       run: curl -LsSf https://astral.sh/uv/install.sh | sh
     - name: Install dependencies
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6b541630aceb3c9804be61655c56f271ef533eb3..7dccfac752254efa4a8ad073da9285eff18e182e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -44,7 +44,8 @@ jobs:
         curl -LsSf https://astral.sh/uv/install.sh | sh
     - name: Set up Python ${{ matrix.python-version }}
       run: uv venv --python 3.13
-      cache: uv
+      with:
+        cache: uv
 
     # only needed for local testing
     # - name: Add Poetry to PATH