Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Cache uv virtualenv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .venv
key: uv-venv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Cache uv virtualenv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .venv
key: uv-venv-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Cache uv virtualenv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .venv
key: uv-venv-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
Expand All @@ -33,7 +33,7 @@ jobs:
uv tool install --with pre-commit-uv pre-commit

- name: Setup pre-commit cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Cache uv virtualenv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .venv
key: uv-venv-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
Expand Down