From 125b38cd4537689bcae8ef9da6ca4ee0eb01034a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:20:56 +0000 Subject: [PATCH] build(deps): 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/builder-images.yml | 2 +- .github/workflows/redis.yml | 4 ++-- .github/workflows/reusable-kumomta-build.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/builder-images.yml b/.github/workflows/builder-images.yml index 7d09fd4f..b9c5d3b1 100644 --- a/.github/workflows/builder-images.yml +++ b/.github/workflows/builder-images.yml @@ -98,7 +98,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build Image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: Dockerfile.builder diff --git a/.github/workflows/redis.yml b/.github/workflows/redis.yml index 8a66d681..89d3f480 100644 --- a/.github/workflows/redis.yml +++ b/.github/workflows/redis.yml @@ -48,7 +48,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build No Push if: ${{ github.event_name == 'pull_request' }} - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: docker/redis/Dockerfile @@ -57,7 +57,7 @@ jobs: - name: Build and push by digest if: ${{ github.event_name != 'pull_request' }} id: build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: docker/redis/Dockerfile diff --git a/.github/workflows/reusable-kumomta-build.yml b/.github/workflows/reusable-kumomta-build.yml index e387f8bb..71e3f0d7 100644 --- a/.github/workflows/reusable-kumomta-build.yml +++ b/.github/workflows/reusable-kumomta-build.yml @@ -211,7 +211,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build Image id: build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: ${{ github.event_name != 'pull_request' }} platforms: ${{ inputs.docker_platform }}