From 33a40653f80f2fce5778c4c625908d33fa6d4104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 01:23:11 +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/nightly_build.yml | 4 ++-- .github/workflows/stable_build.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 24ca4505..a6f763c1 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -447,14 +447,14 @@ jobs: version: latest - name: Login to DockerHub Registry if: contains(needs.workflowvars.outputs.dockermissing, 'no') - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_CLITOKEN }} logout: true - name: Login to GitHub Container Registry if: contains(needs.workflowvars.outputs.dryrun, 'no') - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/stable_build.yml b/.github/workflows/stable_build.yml index 314a6f90..bcc56516 100644 --- a/.github/workflows/stable_build.yml +++ b/.github/workflows/stable_build.yml @@ -170,7 +170,7 @@ jobs: with: version: latest - name: Login to DockerHub Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_CLITOKEN }}