Skip to content

Commit 7ffa898

Browse files
Merge branch 'main' into main
2 parents 46437cd + a63ef03 commit 7ffa898

33 files changed

+741
-297
lines changed

.github/workflows/_e2e_nightly_multi_node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
echo "${{ secrets.KUBECONFIG_B64 }}" | base64 -d > $KUBECONFIG
105105
106106
- name: Checkout code
107-
uses: actions/checkout@v6.0.1
107+
uses: actions/checkout@v6
108108

109109
- name: Prepare scripts
110110
run: |

.github/workflows/_e2e_nightly_single_node_models.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ jobs:
7878
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
7979
8080
- name: Checkout vllm-project/vllm-ascend repo
81-
uses: actions/checkout@v6.0.1
81+
uses: actions/checkout@v6
8282

8383
- name: Install system dependencies
8484
run: |
8585
apt-get -y install `cat packages.txt`
8686
apt-get -y install gcc g++ cmake libnuma-dev
8787
8888
- name: Checkout vllm-project/vllm repo
89-
uses: actions/checkout@v6.0.1
89+
uses: actions/checkout@v6
9090
with:
9191
repository: vllm-project/vllm
9292
ref: ${{ inputs.vllm }}
@@ -135,7 +135,7 @@ jobs:
135135
echo "GHA_VLLM_ASCEND_VERSION=$RESOLVED_VERSION" >> $GITHUB_ENV
136136
137137
- name: Checkout vllm-project/vllm-ascend repo
138-
uses: actions/checkout@v6.0.1
138+
uses: actions/checkout@v6
139139
with:
140140
repository: vllm-project/vllm-ascend
141141
path: ./vllm-ascend

.github/workflows/_e2e_test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
apt install git -y
4242
4343
- name: Checkout vllm-project/vllm-ascend repo
44-
uses: actions/checkout@v6.0.1
44+
uses: actions/checkout@v6
4545

4646
- name: Install system dependencies
4747
run: |
4848
apt-get -y install `cat packages.txt`
4949
apt-get -y install gcc g++ cmake libnuma-dev
5050
5151
- name: Checkout vllm-project/vllm repo
52-
uses: actions/checkout@v6.0.1
52+
uses: actions/checkout@v6
5353
with:
5454
repository: vllm-project/vllm
5555
ref: ${{ inputs.vllm }}
@@ -137,15 +137,15 @@ jobs:
137137
apt install git -y
138138
139139
- name: Checkout vllm-project/vllm-ascend repo
140-
uses: actions/checkout@v6.0.1
140+
uses: actions/checkout@v6
141141

142142
- name: Install system dependencies
143143
run: |
144144
apt-get -y install `cat packages.txt`
145145
apt-get -y install gcc g++ cmake libnuma-dev
146146
147147
- name: Checkout vllm-project/vllm repo
148-
uses: actions/checkout@v6.0.1
148+
uses: actions/checkout@v6
149149
with:
150150
repository: vllm-project/vllm
151151
ref: ${{ inputs.vllm }}
@@ -229,7 +229,7 @@ jobs:
229229
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
230230
231231
- name: Checkout vllm-project/vllm-ascend repo
232-
uses: actions/checkout@v6.0.1
232+
uses: actions/checkout@v6
233233
with:
234234
path: ./vllm-ascend
235235

@@ -239,7 +239,7 @@ jobs:
239239
apt-get -y install gcc g++ cmake libnuma-dev
240240
241241
- name: Checkout vllm-project/vllm repo
242-
uses: actions/checkout@v6.0.1
242+
uses: actions/checkout@v6
243243
with:
244244
repository: vllm-project/vllm
245245
ref: ${{ inputs.vllm }}

.github/workflows/_nightly_image_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
image-tag: ${{ steps.build-image.outputs.image-tag }}
2020

2121
steps:
22-
- uses: actions/checkout@v6.0.1
22+
- uses: actions/checkout@v6
2323

2424
- name: Show build target
2525
run: |

.github/workflows/_pre_commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout vllm-project/vllm-ascend repo
18-
uses: actions/checkout@v6.0.1
18+
uses: actions/checkout@v6
1919
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2020
with:
2121
python-version: "3.11"
2222
- run: echo "::add-matcher::.github/workflows/matchers/actionlint.json"
2323
- run: echo "::add-matcher::.github/workflows/matchers/mypy.json"
2424
- name: Checkout vllm-project/vllm repo
25-
uses: actions/checkout@v6.0.1
25+
uses: actions/checkout@v6
2626
with:
2727
repository: vllm-project/vllm
2828
path: ./vllm-empty

.github/workflows/labled_doctest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
git --no-pager log -1 || true
6767
6868
- name: Checkout vllm-project/vllm-ascend repo
69-
uses: actions/checkout@v6.0.1
69+
uses: actions/checkout@v6
7070

7171
- name: Run vllm-ascend/tests/e2e/run_doctests.sh
7272
run: |

.github/workflows/labled_test_310.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ jobs:
7777
apt install git -y
7878
7979
- name: Checkout vllm-project/vllm-ascend repo
80-
uses: actions/checkout@v6.0.1
80+
uses: actions/checkout@v6
8181

8282
- name: Install system dependencies
8383
run: |
8484
apt-get -y install `cat packages.txt`
8585
apt-get -y install git vim wget net-tools gcc g++ cmake libnuma-dev curl gnupg2
8686
8787
- name: Checkout vllm-project/vllm repo
88-
uses: actions/checkout@v6.0.1
88+
uses: actions/checkout@v6
8989
with:
9090
repository: vllm-project/vllm
9191
ref: ${{ matrix.vllm_version }}

.github/workflows/pr_tag_image_build_and_push.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
if: ${{ github.event_name == 'push' }}
5959
steps:
60-
- uses: actions/checkout@v6.0.1
60+
- uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
persist-credentials: false
@@ -137,7 +137,7 @@ jobs:
137137
}}
138138
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
139139
steps:
140-
- uses: actions/checkout@v6.0.1
140+
- uses: actions/checkout@v6
141141
with:
142142
fetch-depth: 0
143143
persist-credentials: false
@@ -212,7 +212,7 @@ jobs:
212212
runs-on: ubuntu-latest
213213
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
214214
steps:
215-
- uses: actions/checkout@v6.0.1
215+
- uses: actions/checkout@v6
216216
with:
217217
fetch-depth: 0
218218
persist-credentials: false
@@ -292,7 +292,7 @@ jobs:
292292
}}
293293
if: ${{ github.event_name == 'push' }}
294294
steps:
295-
- uses: actions/checkout@v6.0.1
295+
- uses: actions/checkout@v6
296296
with:
297297
fetch-depth: 0
298298
persist-credentials: false
@@ -369,7 +369,7 @@ jobs:
369369
# if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
370370
if: false
371371
steps:
372-
- uses: actions/checkout@v6.0.1
372+
- uses: actions/checkout@v6
373373
with:
374374
fetch-depth: 0
375375
persist-credentials: false
@@ -455,7 +455,7 @@ jobs:
455455
# if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
456456
if: false
457457
steps:
458-
- uses: actions/checkout@v6.0.1
458+
- uses: actions/checkout@v6
459459
with:
460460
fetch-depth: 0
461461
persist-credentials: false

.github/workflows/pr_test_full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5050
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
5151
# NOTE: Do not update the version of checkout, there have some issue on self_hosted runner with the higher version
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v6
5353
- uses: dorny/paths-filter@v3
5454
id: filter
5555
with:

.github/workflows/pr_test_light.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5555
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
5656
# NOTE: Do not update the version of checkout, there have some issue on self_hosted runner with the higher version
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v6
5858
- uses: dorny/paths-filter@v3
5959
id: filter
6060
with:
@@ -105,7 +105,7 @@ jobs:
105105
apt-get install -y python3-pip git vim wget net-tools gcc g++ cmake libnuma-dev curl gnupg2
106106
107107
- name: Checkout vllm-project/vllm repo
108-
uses: actions/checkout@v6.0.1
108+
uses: actions/checkout@v6
109109
with:
110110
repository: vllm-project/vllm
111111
ref: ${{ matrix.vllm_version }}
@@ -118,7 +118,7 @@ jobs:
118118
python3 -m pip uninstall -y triton
119119
120120
- name: Checkout vllm-project/vllm-ascend repo
121-
uses: actions/checkout@v6.0.1
121+
uses: actions/checkout@v6
122122

123123
- name: Install vllm-project/vllm-ascend
124124
run: |

0 commit comments

Comments
 (0)