Skip to content

Commit f2a093e

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/download-artifact-8
2 parents 429019b + 13fa54f commit f2a093e

8 files changed

Lines changed: 2790 additions & 3134 deletions

File tree

.github/workflows/code_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run-code-check:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v6.0.1
31+
- uses: actions/checkout@v6.0.2
3232
- name: Install uv
3333
uses: astral-sh/setup-uv@v7
3434
with:

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
backend: [vllm, sglang]
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v6.0.1
34+
uses: actions/checkout@v6.0.2
3535

3636
- name: Extract backend version
3737
id: backend-version
@@ -61,7 +61,7 @@ jobs:
6161
uses: docker/setup-buildx-action@v3
6262

6363
- name: Log in to Docker Hub
64-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
64+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
6565
with:
6666
username: ${{ secrets.DOCKER_USERNAME }}
6767
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -73,7 +73,7 @@ jobs:
7373
images: vectorinstitute/vector-inference-${{ matrix.backend }}
7474

7575
- name: Build and push Docker image
76-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
76+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8
7777
with:
7878
context: .
7979
file: ./${{ matrix.backend }}.Dockerfile

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v6.0.1
54+
uses: actions/checkout@v6.0.2
5555
with:
5656
fetch-depth: 0 # Fetch all history for proper versioning
5757

@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
steps:
9090
- name: Checkout code
91-
uses: actions/checkout@v6.0.1
91+
uses: actions/checkout@v6.0.2
9292
with:
9393
fetch-depth: 0 # Fetch all history for proper versioning
9494

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
sudo apt-get update
1414
sudo apt-get install libcurl4-openssl-dev libssl-dev
1515
16-
- uses: actions/checkout@v6.0.1
16+
- uses: actions/checkout@v6.0.2
1717

1818
- name: Install uv
1919
uses: astral-sh/setup-uv@v7

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
matrix:
4444
python-version: ["3.10", "3.11", "3.12"]
4545
steps:
46-
- uses: actions/checkout@v6.0.1
46+
- uses: actions/checkout@v6.0.2
4747

4848
- name: Install uv
4949
uses: astral-sh/setup-uv@v7

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: check-toml
1818

1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: 'v0.14.14'
20+
rev: 'v0.15.6'
2121
hooks:
2222
- id: ruff
2323
args: [--fix, --exit-non-zero-on-fix]

uv.lock

Lines changed: 2780 additions & 3124 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vec_inf/client/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def parse_launch_output(output: str) -> tuple[str, dict[str, str]]:
345345
command output. Configuration parameters are parsed from key-value pairs
346346
in the output text.
347347
"""
348-
slurm_job_id = output.split(" ")[-1].strip().strip("\n")
348+
slurm_job_id = output.rsplit(" ", maxsplit=1)[-1].strip().strip("\n")
349349

350350
# Extract config parameters
351351
config_dict = {}

0 commit comments

Comments
 (0)