From a3568e8712078dc2e082e39a75619049af7d8e23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:33:40 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [docker/login-action](https://github.com/docker/login-action), [docker/metadata-action](https://github.com/docker/metadata-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/4907a6ddec9925e35a0a9e82d7399ccc52663121...650006c6eb7dba73a995cc03b0b2d7f5ca915bee) Updates `docker/metadata-action` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/030e881283bb7a6894de51c315a6bfe6a94e05cf...80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9) Updates `peter-evans/create-pull-request` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/c0f553fe549906ede9cf27b5156039d195d2ece0...5f6978faf089d4d20b00c7766989d076bb2fc7f1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-push-charts.yml | 2 +- .github/workflows/build-push-images.yml | 6 +++--- .github/workflows/build-push-vllm-cpu.yml | 8 ++++---- .github/workflows/build-push-vllm-xpu.yml | 4 ++-- .github/workflows/test-pr.yml | 2 +- .github/workflows/update-dependencies.yml | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-push-charts.yml b/.github/workflows/build-push-charts.yml index cc4aafb..e5a50d7 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@v6 + uses: actions/checkout@v7 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 9a49138..d7448e9 100644 --- a/.github/workflows/build-push-images.yml +++ b/.github/workflows/build-push-images.yml @@ -26,12 +26,12 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -43,7 +43,7 @@ jobs: - name: Calculate metadata for image id: image-meta - uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 + uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0 with: images: ghcr.io/stackhpc/azimuth-llm-${{ matrix.component }}-ui # Produce the branch name or tag and the SHA as tags diff --git a/.github/workflows/build-push-vllm-cpu.yml b/.github/workflows/build-push-vllm-cpu.yml index b8b0377..eb147da 100644 --- a/.github/workflows/build-push-vllm-cpu.yml +++ b/.github/workflows/build-push-vllm-cpu.yml @@ -24,13 +24,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -52,13 +52,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/build-push-vllm-xpu.yml b/.github/workflows/build-push-vllm-xpu.yml index 8ea95c7..a93848c 100644 --- a/.github/workflows/build-push-vllm-xpu.yml +++ b/.github/workflows/build-push-vllm-xpu.yml @@ -24,13 +24,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 83cc216..dc43bbf 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -56,7 +56,7 @@ jobs: RELEASE_NAME: ci-test steps: - name: Checkout the repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.sha }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 7a60ba0..983b297 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@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true @@ -61,7 +61,7 @@ jobs: - name: Create Pull Request if: ${{ steps.dependency_updates.outputs.new_vllm_tag }} - uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: base: main branch: update/vllm-${{ steps.dependency_updates.outputs.new_vllm_tag }}