From 3a1aa5dded5b66ae7fa02aa0fe775e9bbdf5bb5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 07:24:08 +0200 Subject: [PATCH] Bump docker/build-push-action from 7.2.0 to 7.3.0 (#1756) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 7.2.0 to 7.3.0.
Release notes

Sourced from docker/build-push-action's releases.

v7.3.0

Full Changelog: https://github.com/docker/build-push-action/compare/v7.2.0...v7.3.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=docker/build-push-action&package-manager=github_actions&previous-version=7.2.0&new-version=7.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker-build.yml | 6 +++--- .github/workflows/docker-publish.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 54a78312..5e9075ff 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -29,7 +29,7 @@ jobs: uses: docker/setup-buildx-action@v4 - name: Build frontend Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: frontend push: false @@ -38,7 +38,7 @@ jobs: platforms: linux/amd64 - name: Build backend Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: backend push: false @@ -47,7 +47,7 @@ jobs: platforms: linux/amd64 - name: Build combined Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: ./ push: false diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 905780ef..88ab7577 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -58,7 +58,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_COMBINED }} - name: Build and push frontend Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: frontend push: true @@ -68,7 +68,7 @@ jobs: platforms: linux/amd64,linux/arm64/v8 - name: Build and push backend Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: backend push: true @@ -78,7 +78,7 @@ jobs: platforms: linux/amd64,linux/arm64/v8 - name: Build and push combined Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: ./ push: true