From 73d4f559e64326e74d321ed50148879906de756c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 01:15:14 +0000 Subject: [PATCH] Bump docker/login-action from 3 to 4 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/workflows/publish-docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml index 01590d66b..1a5a2960c 100644 --- a/.github/workflows/publish-docker-image.yml +++ b/.github/workflows/publish-docker-image.yml @@ -121,14 +121,14 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Log in to ACR if: vars.ACR_REGISTRY_URL != '' && github.actor != 'dependabot[bot]' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.ACR_REGISTRY_URL }} username: ${{ vars.ACR_USERNAME }} password: ${{ secrets.ACR_PASSWORD }} - name: Log in to Distribution registry if: vars.DISTRIBUTION_REGISTRY_URL != '' && github.actor != 'dependabot[bot]' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.DISTRIBUTION_REGISTRY_URL }} username: ${{ vars.DISTRIBUTION_USERNAME }}