From 72cee67cd64ff33f538f5462b7d6d849ca183fb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 12:25:08 +0000 Subject: [PATCH] Bump the third-party-actions group with 2 updates Bumps the third-party-actions group with 2 updates: [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/login-action](https://github.com/docker/login-action). Updates `docker/build-push-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.1.0...v7.2.0) Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.1.0...v4.2.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: third-party-actions - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: third-party-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/docker_build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index eefca4810b..0192f6c2f6 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@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile @@ -65,7 +65,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@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile @@ -82,14 +82,14 @@ jobs: - name: Login to Docker Hub if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build final and push (main) if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile