diff --git a/.github/workflows/build-push-charts.yml b/.github/workflows/build-push-charts.yml index fd4cacc..cc4aafb 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 3fdfa5e..cd69315 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 1cb8aac..0ab145e 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 bf6b184..b09f3e0 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 dc54a73..2eec68b 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 e45a51c..22bed43 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