From bb5862f5c2a49446a53273ee9f36a68e7e3c00a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:09:34 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .github/workflows/build-push-charts.yml | 2 +- .github/workflows/build-push-images.yml | 2 +- .github/workflows/build-push-vllm-cpu.yml | 4 ++-- .github/workflows/build-push-vllm-xpu.yml | 2 +- .github/workflows/test-pr.yml | 2 +- .github/workflows/update-dependencies.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-push-charts.yml b/.github/workflows/build-push-charts.yml index 15abf85..fd4cacc 100644 --- a/.github/workflows/build-push-charts.yml +++ b/.github/workflows/build-push-charts.yml @@ -22,7 +22,7 @@ jobs: chart-version: ${{ steps.semver.outputs.version }} steps: - name: Check out the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} # This is important for the semver action to work correctly diff --git a/.github/workflows/build-push-images.yml b/.github/workflows/build-push-images.yml index 6903837..3fdfa5e 100644 --- a/.github/workflows/build-push-images.yml +++ b/.github/workflows/build-push-images.yml @@ -26,7 +26,7 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} diff --git a/.github/workflows/build-push-vllm-cpu.yml b/.github/workflows/build-push-vllm-cpu.yml index d128ef9..54e81f9 100644 --- a/.github/workflows/build-push-vllm-cpu.yml +++ b/.github/workflows/build-push-vllm-cpu.yml @@ -24,7 +24,7 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} @@ -52,7 +52,7 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} diff --git a/.github/workflows/build-push-vllm-xpu.yml b/.github/workflows/build-push-vllm-xpu.yml index 5723333..bf6b184 100644 --- a/.github/workflows/build-push-vllm-xpu.yml +++ b/.github/workflows/build-push-vllm-xpu.yml @@ -24,7 +24,7 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 38bd917..5c83326 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -51,7 +51,7 @@ jobs: RELEASE_NAME: ci-test steps: - name: Checkout the repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.sha }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 3967b82..e45a51c 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -11,7 +11,7 @@ jobs: pull-requests: write steps: - name: Checkout the config repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: true