From 9e893085485ae52424d356c519173c55fe1e093e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:44:05 +0000 Subject: [PATCH] ci(tools): update docker/login-action action to v4 --- .github/workflows/docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index dbd8cc1..51e2892 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -56,14 +56,14 @@ jobs: uses: sigstore/cosign-installer@v3 - name: Hub login - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Quay login - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: github.event_name != 'pull_request' with: registry: quay.io @@ -71,7 +71,7 @@ jobs: password: ${{ secrets.QUAY_PASSWORD }} - name: Ghcr login - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: github.event_name != 'pull_request' with: registry: ghcr.io