From 92ee02fdebba3ac3072fd4b598a7b87408999a88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 17:32:54 +0000 Subject: [PATCH] Bump docker/login-action from 4.5.2 to 4.6.0 Bumps [docker/login-action](https://github.com/docker/login-action) from 4.5.2 to 4.6.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.5.2...v4.6.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 4.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build_project.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_project.yml b/.github/workflows/build_project.yml index eba3bb8..d5fc7fe 100644 --- a/.github/workflows/build_project.yml +++ b/.github/workflows/build_project.yml @@ -169,7 +169,7 @@ jobs: - name: Log in to the Docker github container registry if: ${{github.event_name == 'release' || (github.event_name == 'push' && github.ref_name == 'main')}} - uses: docker/login-action@v4.5.2 + uses: docker/login-action@v4.6.0 with: registry: ${{ env.REGISTRY_GITHUB }} username: ${{ github.actor }} @@ -177,7 +177,7 @@ jobs: - name: Log in to the Docker container registry if: ${{github.event_name == 'release'}} - uses: docker/login-action@v4.5.2 + uses: docker/login-action@v4.6.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }}