From 19260d8f73be44a2065e90e3583eb2bfd1e6f45e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 21:55:21 +0000 Subject: [PATCH] chore(core-deps): update docker/login-action action to v4 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4bada6b..64b9efa 100644 --- a/action.yml +++ b/action.yml @@ -72,13 +72,13 @@ runs: uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub # if the client has not provided a custom registry, then login to Docker Hub if: env.should-deliver-container == 'true' && inputs.container-registry-name == 'false' - uses: docker/login-action@v3.0.0 + uses: docker/login-action@v4.0.0 with: username: ${{ inputs.container-registry-username }} password: ${{ inputs.container-registry-password }} - name: Login to the Container registry # Otherwise, if the client has provided a custom registry, then login to it if: env.should-deliver-container == 'true' && inputs.container-registry-name != 'false' - uses: docker/login-action@v3.0.0 + uses: docker/login-action@v4.0.0 with: registry: ${{ inputs.container-registry-name }} username: ${{ inputs.container-registry-username }}