Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
run: uv python install 3.11

- name: Cache uv-managed virtualenv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .venv
key: venv-quality-${{ runner.os }}-py3.11-${{ hashFiles('uv.lock', 'pyproject.toml') }}
Expand All @@ -110,7 +110,7 @@ jobs:

- name: Load cached Pre-Commit Dependencies
id: cached-pre-commit-dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pre-commit/
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
run: uv python install ${{ matrix.python-version }}

- name: Cache uv-managed virtualenv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .venv
key: venv-unit-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('uv.lock', 'pyproject.toml') }}
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
run: uv python install ${{ matrix.python-version }}

- name: Cache uv-managed virtualenv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .venv
key: venv-integration-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('uv.lock', 'pyproject.toml') }}
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:

- name: Cache docker images
id: docker-image-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/docker-images
key: docker-images-v1-${{ hashFiles('.github/workflows/ci.yml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
run: uv export --frozen --no-emit-project --no-hashes --format requirements.txt --output-file build-constraints.txt

- name: Cache pip downloads
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/pip
Expand All @@ -103,7 +103,7 @@ jobs:
# is pinned. Windows + macOS build without PGO and without a pinned build dir.
- name: Cache mypyc build dir
if: startsWith(matrix.os, 'ubuntu')
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/sqlspec-mypyc-build
key: mypyc-${{ matrix.os }}-py${{ matrix.python-version }}-${{ hashFiles('sqlspec/**/*.py', 'pyproject.toml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:
run: uv export --frozen --no-emit-project --no-hashes --format requirements.txt --output-file build-constraints.txt

- name: Cache pip downloads
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/pip
Expand All @@ -262,7 +262,7 @@ jobs:

- name: Cache mypyc build dir
if: matrix.os == 'ubuntu-latest'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/sqlspec-mypyc-build
key: mypyc-${{ matrix.os }}-py${{ matrix.python-version }}-${{ hashFiles('sqlspec/**/*.py', 'pyproject.toml') }}
Expand Down
Loading