From 044ce1e89a82a44d16cc088dc91530a4b1f87ffd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 04:24:06 +0000 Subject: [PATCH] chore(update): 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/build-image-template.yml | 4 ++-- .github/workflows/sign-images.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-image-template.yml b/.github/workflows/build-image-template.yml index 92f1345..4d78063 100644 --- a/.github/workflows/build-image-template.yml +++ b/.github/workflows/build-image-template.yml @@ -123,7 +123,7 @@ jobs: - name: Login to the CI registry 🔐 if: inputs.publish_to_registry == 'false' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.ci_registry }} username: ${{ github.actor }} @@ -203,7 +203,7 @@ jobs: ### The publish and periodic rebuilds are based on the latest stable github release tag - name: Login into official registry 🔐 if: inputs.publish_to_registry == 'true' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.registry }} username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/sign-images.yml b/.github/workflows/sign-images.yml index 626365d..ab2a8ed 100644 --- a/.github/workflows/sign-images.yml +++ b/.github/workflows/sign-images.yml @@ -79,7 +79,7 @@ jobs: publish_to_registry: "false" - name: Login to CI registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }}