From 79467406ce091e0c979e4892eb8076554c8eb9ba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 15:38:50 +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 33e1a83..755b881 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