@@ -55,15 +55,15 @@ jobs:
5555 # Cache the uv binary in GitHub Actions tool-cache so setup-uv
5656 # finds it and skips downloading from GitHub Releases.
5757 - name : Cache uv binary
58- uses : actions/cache@v4
58+ uses : actions/cache@v5
5959 with :
6060 path : /opt/hostedtoolcache/uv
6161 key : uv-binary-${{ runner.os }}-0.10.8
6262
6363 # Pre-install uv via official action with caching to avoid
6464 # downloading from GitHub Releases on every matrix job.
6565 - name : Install uv
66- uses : astral-sh/setup-uv@v6
66+ uses : astral-sh/setup-uv@v7
6767 with :
6868 version : " 0.10.8"
6969 enable-cache : true
9292 # The key includes the date so the cache is invalidated daily,
9393 # ensuring we always test against a fresh Odoo clone each day.
9494 - name : Cache Odoo ${{ matrix.odoo_version }}
95- uses : actions/cache@v4
95+ uses : actions/cache@v5
9696 with :
9797 path : ~/code/odoo/odoo/${{ matrix.odoo_version }}
9898 key : odoo-${{ matrix.odoo_version }}-${{ runner.os }}-${{ env.TODAY }}
@@ -101,7 +101,7 @@ jobs:
101101 run : tlc --yes pull-repos
102102
103103 - name : Check out odoo-venv
104- uses : actions/checkout@v4
104+ uses : actions/checkout@v6
105105
106106 - name : Install odoo-venv
107107 run : uv tool install .
@@ -183,13 +183,13 @@ jobs:
183183 # Cache the uv binary in GitHub Actions tool-cache so setup-uv
184184 # finds it and skips downloading from GitHub Releases.
185185 - name : Cache uv binary
186- uses : actions/cache@v4
186+ uses : actions/cache@v5
187187 with :
188188 path : /opt/hostedtoolcache/uv
189189 key : uv-binary-${{ runner.os }}-0.10.8
190190
191191 - name : Install uv
192- uses : astral-sh/setup-uv@v6
192+ uses : astral-sh/setup-uv@v7
193193 with :
194194 version : " 0.10.8"
195195 enable-cache : true
@@ -216,7 +216,7 @@ jobs:
216216 # Combined cache for Odoo source + OCA repos.
217217 # Falls back to the Odoo-only cache produced by the test-native job on first run.
218218 - name : Cache repos ${{ matrix.odoo_version }}
219- uses : actions/cache@v4
219+ uses : actions/cache@v5
220220 with :
221221 path : |
222222 ~/code/odoo/odoo/${{ matrix.odoo_version }}
@@ -231,7 +231,7 @@ jobs:
231231 run : tlc --yes pull-repos
232232
233233 - name : Check out odoo-venv
234- uses : actions/checkout@v4
234+ uses : actions/checkout@v6
235235
236236 - name : Install odoo-venv
237237 run : uv tool install .
0 commit comments