From 37bc123d234dd092f4b39c79ac6503838cc2289e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 09:15:26 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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 fd4cacc3..cc4aafbe 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@v5 + uses: actions/checkout@v6 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 3fdfa5eb..cd69315c 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@v5 + uses: actions/checkout@v6 with: ref: ${{ inputs.ref }} diff --git a/.github/workflows/build-push-vllm-cpu.yml b/.github/workflows/build-push-vllm-cpu.yml index 1cb8aac4..0ab145e6 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@v5 + uses: actions/checkout@v6 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@v5 + uses: actions/checkout@v6 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 bf6b184f..b09f3e01 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@v5 + uses: actions/checkout@v6 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index dc54a73e..2eec68bd 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@v5 + uses: actions/checkout@v6 with: ref: ${{ github.sha }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index e45a51c8..22bed437 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@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 fetch-tags: true