Skip to content

Commit 6196df9

Browse files
Bump actions/checkout from 5.0.0 to 6.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 04ee73b commit 6196df9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.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@v5.0.0
31+
- uses: actions/checkout@v6.0.0
3232
- name: Install uv
3333
uses: astral-sh/setup-uv@v7
3434
with:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- docker
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5.0.0
29+
uses: actions/checkout@v6.0.0
3030

3131
- name: Extract vLLM version
3232
id: vllm-version

.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@v5.0.0
54+
uses: actions/checkout@v6.0.0
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@v5.0.0
91+
uses: actions/checkout@v6.0.0
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@v5.0.0
16+
- uses: actions/checkout@v6.0.0
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@v5.0.0
46+
- uses: actions/checkout@v6.0.0
4747

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

0 commit comments

Comments
 (0)