From 9791e07db2521bc14431e456ff00341f504dc25b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 08:03:21 +0000 Subject: [PATCH] Bump the docker-actions group across 1 directory with 4 updates Bumps the docker-actions group with 4 updates in the / directory: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/login-action](https://github.com/docker/login-action). Updates `docker/setup-qemu-action` from 4.0.0 to 4.2.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v4.0.0...v4.2.0) Updates `docker/setup-buildx-action` from 4.0.0 to 4.2.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v4.0.0...v4.2.0) Updates `docker/build-push-action` from 7.1.0 to 7.3.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.1.0...v7.3.0) Updates `docker/login-action` from 4.1.0 to 4.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.1.0...v4.4.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-actions - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-actions - dependency-name: docker/setup-buildx-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-actions - dependency-name: docker/setup-qemu-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c4fb0e6..638f46d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,16 +56,16 @@ jobs: echo "base-image-tag=$TEMP_IMAGE:base-image" >> $GITHUB_OUTPUT echo "test-image-tag=$TEMP_IMAGE:test" >> $GITHUB_OUTPUT - name: Set up QEMU - uses: docker/setup-qemu-action@v4.0.0 + uses: docker/setup-qemu-action@v4.2.0 with: platforms: ${{steps.info.outputs.platforms}} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v4.0.0 + uses: docker/setup-buildx-action@v4.2.0 id: buildx with: driver-opts: network=host - name: Build image - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.3.0 with: context: . builder: ${{steps.buildx.outputs.name}} @@ -75,7 +75,7 @@ jobs: cache-to: type=gha,mode=max push: true - name: Build test image - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.3.0 with: context: ./test builder: ${{steps.buildx.outputs.name}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c655327e..8f77fcfa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,11 +28,11 @@ jobs: - name: Checkout uses: actions/checkout@v6.0.2 - name: Set up QEMU - uses: docker/setup-qemu-action@v4.0.0 + uses: docker/setup-qemu-action@v4.2.0 with: platforms: ${{env.PLATFORMS}} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v4.0.0 + uses: docker/setup-buildx-action@v4.2.0 id: buildx - name: Determine info id: info @@ -94,14 +94,14 @@ jobs: DELIMITER: '.' - name: Login to registry if: steps.info.outputs.create-release - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.4.0 with: registry: ghcr.io username: ${{github.actor}} password: ${{github.token}} - name: Build & push image if: steps.info.outputs.create-release - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.3.0 with: context: . builder: ${{steps.buildx.outputs.name}}