From a48b248b6dfe92728e6fd2ac1caa310162cd2f65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 20:23:09 +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/docker-build-static.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-build-static.yml b/.github/workflows/docker-build-static.yml index e8112f4..607bc13 100644 --- a/.github/workflows/docker-build-static.yml +++ b/.github/workflows/docker-build-static.yml @@ -536,7 +536,7 @@ jobs: tags: ${{ matrix.container }}-base - name: Build ${{ matrix.container }} Base Docker Image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . # On PR will fail, force fully uncomment push: true, or docker image will fail for next steps @@ -637,7 +637,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build ${{ matrix.container }}-rootless Docker Image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . push: ${{ github.event_name != 'pull_request' }} @@ -651,7 +651,7 @@ jobs: ### This docker build always the last, due :latest tag pushed multiple times, for whatever variants may added in future add docker build above this - name: Build ${{ matrix.container }} Docker Image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . push: ${{ github.event_name != 'pull_request' }}