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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
version: "latest"
Expand Down Expand Up @@ -72,13 +72,13 @@ jobs:
TRANSFORMERS_OFFLINE: "1"
HF_HUB_OFFLINE: "1"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
version: "latest"
enable-cache: true
- name: Cache HuggingFace models (BAAI/bge-small-en-v1.5)
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/huggingface
key: hf-models-bge-small-en-v1.5-${{ runner.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/epic-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Validate EPIC-059 – EPIC-063 frontmatter
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hive-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
version: ${{ steps.meta.outputs.version }}
tag: ${{ steps.meta.outputs.tag }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# On a tag push GITHUB_REF is refs/tags/vX.Y.Z, so checkout grabs
# the tag — this is the explicit guarantee that we never build a
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
permissions:
contents: write # gh release create
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.tag || github.ref }}
- uses: actions/download-artifact@v8
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ts-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
working-directory: packages/${{ matrix.package }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
--health-retries 10

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
working-directory: packages/${{ matrix.package }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Node.js with npm registry
uses: actions/setup-node@v6
Expand Down
Loading