From 15e3c79b2dc4b5214c842adae8e6c2899dad5009 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 14:02:37 +0000 Subject: [PATCH] Bump docker/build-push-action from 6 to 7 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6 to 7. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reusable-docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml index 6062271..1c8e7d0 100644 --- a/.github/workflows/reusable-docker.yml +++ b/.github/workflows/reusable-docker.yml @@ -60,7 +60,7 @@ jobs: - name: Build and push Docker image (with metadata) if: inputs.push && inputs.tags_config != '' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ${{ inputs.dockerfile_path }} @@ -73,7 +73,7 @@ jobs: - name: Build and push Docker image (with custom tags) if: inputs.push && inputs.tags_config == '' && inputs.custom_tags != '' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ${{ inputs.dockerfile_path }} @@ -85,7 +85,7 @@ jobs: - name: Build Docker image (no push) if: ${{ !inputs.push }} - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ${{ inputs.dockerfile_path }}