From 11d155ee043779b77ba7d04cbe57d83952caaf28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:54:50 +0000 Subject: [PATCH] chore(deps): bump docker/login-action in /.github/actions/docker-merge Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/actions/docker-merge/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/docker-merge/action.yml b/.github/actions/docker-merge/action.yml index adb90c81..f2a9cda4 100644 --- a/.github/actions/docker-merge/action.yml +++ b/.github/actions/docker-merge/action.yml @@ -46,14 +46,14 @@ runs: - name: Login to Docker Hub if: ${{ inputs.docker-password }} - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ inputs.docker-username }} password: ${{ inputs.docker-password }} - name: Log in to GHCR if: ${{ inputs.ghcr-password }} - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ inputs.ghcr-username }}