From 0fae05f754a8cc6f4f86b5c3204897863dc99b30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 17:56:28 +0000 Subject: [PATCH] Bump docker/build-push-action from 6.18.0 to 7.0.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.18.0 to 7.0.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6.18.0...v7.0.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docker_build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index ae66a06ed5..354770200c 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -43,7 +43,7 @@ jobs: # For PRs: Build image but do not push and run smoke tests - name: Build Docker Image (No Push) if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref != 'refs/heads/main') - uses: docker/build-push-action@v6.18.0 + uses: docker/build-push-action@v7.0.0 with: context: . file: ./Dockerfile @@ -63,7 +63,7 @@ jobs: # For pushes to main: Build, run smoke tests, and push to Docker Hub - name: Build test stage (main) if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/build-push-action@v6.18.0 + uses: docker/build-push-action@v7.0.0 with: context: . file: ./Dockerfile @@ -87,7 +87,7 @@ jobs: - name: Build final and push (main) if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/build-push-action@v6.18.0 + uses: docker/build-push-action@v7.0.0 with: context: . file: ./Dockerfile