Skip to content

Commit bb5862f

Browse files
Bump actions/checkout from 4 to 5 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ee9a1d9 commit bb5862f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build-push-charts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
chart-version: ${{ steps.semver.outputs.version }}
2323
steps:
2424
- name: Check out the repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
ref: ${{ inputs.ref }}
2828
# This is important for the semver action to work correctly

.github/workflows/build-push-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
security-events: write # required for pushing SARIF files
2727
steps:
2828
- name: Check out the repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
ref: ${{ inputs.ref }}
3232

.github/workflows/build-push-vllm-cpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
security-events: write # required for pushing SARIF files
2525
steps:
2626
- name: Check out the vLLM repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
repository: vllm-project/vllm
3030
ref: ${{ inputs.vllm_ref }}
@@ -52,7 +52,7 @@ jobs:
5252
security-events: write # required for pushing SARIF files
5353
steps:
5454
- name: Check out the vLLM repository
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
repository: vllm-project/vllm
5858
ref: ${{ inputs.vllm_ref }}

.github/workflows/build-push-vllm-xpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
security-events: write # required for pushing SARIF files
2525
steps:
2626
- name: Check out the vLLM repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
repository: vllm-project/vllm
3030
ref: ${{ inputs.vllm_ref }}

.github/workflows/test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
RELEASE_NAME: ci-test
5252
steps:
5353
- name: Checkout the repo
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
ref: ${{ github.sha }}
5757

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
pull-requests: write
1212
steps:
1313
- name: Checkout the config repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
fetch-tags: true

0 commit comments

Comments
 (0)