Skip to content

Commit e18e306

Browse files
Bump actions/checkout from 4.3.1 to 6.0.0 (#4592)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.3.1 to 6.0.0. - vLLM version: v0.11.2 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2fa3945 commit e18e306

20 files changed

+32
-32
lines changed

.github/workflows/_e2e_nightly_multi_node.yaml

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

111111
- name: Prepare scripts
112112
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
81+
uses: actions/checkout@v6.0.0
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
89+
uses: actions/checkout@v6.0.0
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
138+
uses: actions/checkout@v6.0.0
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
@@ -40,15 +40,15 @@ jobs:
4040
apt install git -y
4141
4242
- name: Checkout vllm-project/vllm-ascend repo
43-
uses: actions/checkout@v6
43+
uses: actions/checkout@v6.0.0
4444

4545
- name: Install system dependencies
4646
run: |
4747
apt-get -y install `cat packages.txt`
4848
apt-get -y install gcc g++ cmake libnuma-dev
4949
5050
- name: Checkout vllm-project/vllm repo
51-
uses: actions/checkout@v6
51+
uses: actions/checkout@v6.0.0
5252
with:
5353
repository: vllm-project/vllm
5454
ref: ${{ inputs.vllm }}
@@ -134,15 +134,15 @@ jobs:
134134
apt install git -y
135135
136136
- name: Checkout vllm-project/vllm-ascend repo
137-
uses: actions/checkout@v6
137+
uses: actions/checkout@v6.0.0
138138

139139
- name: Install system dependencies
140140
run: |
141141
apt-get -y install `cat packages.txt`
142142
apt-get -y install gcc g++ cmake libnuma-dev
143143
144144
- name: Checkout vllm-project/vllm repo
145-
uses: actions/checkout@v6
145+
uses: actions/checkout@v6.0.0
146146
with:
147147
repository: vllm-project/vllm
148148
ref: ${{ inputs.vllm }}
@@ -232,7 +232,7 @@ jobs:
232232
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
233233
234234
- name: Checkout vllm-project/vllm-ascend repo
235-
uses: actions/checkout@v6
235+
uses: actions/checkout@v6.0.0
236236
with:
237237
path: ./vllm-ascend
238238

@@ -242,7 +242,7 @@ jobs:
242242
apt-get -y install gcc g++ cmake libnuma-dev
243243
244244
- name: Checkout vllm-project/vllm repo
245-
uses: actions/checkout@v6
245+
uses: actions/checkout@v6.0.0
246246
with:
247247
repository: vllm-project/vllm
248248
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
22+
- uses: actions/checkout@v6.0.0
2323

2424
- name: Show build target
2525
run: |

.github/workflows/format_pr_body.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "VLLM_COMMIT=https://github.com/vllm-project/vllm/commit/$VLLM_COMMIT" >> $GITHUB_ENV
4141
4242
- name: Checkout repository
43-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.2.2
43+
uses: actions/checkout@c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5 # v4.2.2
4444

4545
- name: Set up Python
4646
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0

.github/workflows/image_310p_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
}}
6363
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
6464
steps:
65-
- uses: actions/checkout@v6
65+
- uses: actions/checkout@v6.0.0
6666
with:
6767
fetch-depth: 0
6868
persist-credentials: false

.github/workflows/image_310p_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
6060
steps:
61-
- uses: actions/checkout@v6
61+
- uses: actions/checkout@v6.0.0
6262
with:
6363
fetch-depth: 0
6464
persist-credentials: false

.github/workflows/image_a3_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
}}
6363
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
6464
steps:
65-
- uses: actions/checkout@v6
65+
- uses: actions/checkout@v6.0.0
6666
with:
6767
fetch-depth: 0
6868
persist-credentials: false

.github/workflows/image_a3_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
6060
steps:
61-
- uses: actions/checkout@v6
61+
- uses: actions/checkout@v6.0.0
6262
with:
6363
fetch-depth: 0
6464
persist-credentials: false

.github/workflows/image_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
}}
6262
if: ${{ github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test')) }}
6363
steps:
64-
- uses: actions/checkout@v6
64+
- uses: actions/checkout@v6.0.0
6565
with:
6666
fetch-depth: 0
6767
persist-credentials: false

0 commit comments

Comments
 (0)