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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
with:
python-version: ${{ env.PY_VERSION }}
- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-lint-${{ hashFiles('pyproject.toml') }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
python-version: ${{ env.PY_VERSION }}
- name: Cache HuggingFace model
id: hfcache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/huggingface
key: ${{ runner.os }}-models-allMiniLM-v2
Expand Down Expand Up @@ -164,14 +164,14 @@ jobs:
python-version: ${{ env.PY_VERSION }}

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ env.PY_VERSION }}-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-pip-${{ env.PY_VERSION }}-

- name: Restore HuggingFace model cache (warmed by prefetch-model)
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/huggingface
key: ${{ runner.os }}-models-allMiniLM-v2
Expand Down Expand Up @@ -234,13 +234,13 @@ jobs:
with:
python-version: ${{ env.PY_VERSION }}
- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-extras-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-pip-extras-
- name: Cache fastembed model
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/.fastembed-cache
key: ${{ runner.os }}-fastembed-bge-small-v1
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
with:
python-version: "3.11"
- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-build-${{ hashFiles('pyproject.toml') }}
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
- uses: actions/checkout@v6
- name: Cache actionlint + act
id: tools-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
/usr/local/bin/actionlint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
python-version: '3.11'

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-docs-${{ hashFiles('mkdocs.yml') }}
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
python-version: '3.11'

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-docs-${{ hashFiles('mkdocs.yml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: "3.11"

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-eval-${{ hashFiles('pyproject.toml') }}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
python-version: "3.11"

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-eval-${{ hashFiles('pyproject.toml') }}
Expand Down
Loading