From cb829857febb2495f3cabc361e974cc6a7b0b484 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2026 10:43:48 +0000 Subject: [PATCH] build: 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_docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index acead64..bd03709 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -33,20 +33,20 @@ jobs: type=semver,pattern=latest # - name: Login to a private registry - # uses: docker/login-action@v3 + # uses: docker/login-action@v4 # with: # registry: git.example.com # username: ${{ secrets.REGISTRY_USER }} # password: ${{ secrets.REGISTRY_TOKEN }} # - name: Login to the Docker Hub - # uses: docker/login-action@v3 + # uses: docker/login-action@v4 # with: # username: ${{ secrets.DOCKER_USER }} # password: ${{ secrets.DOCKER_TOKEN }} - name: Login to the Github Packages - uses: docker/login-action@v3 + uses: docker/login-action@v4 if: ${{ env.PUBLISH == 'true' }} with: registry: ghcr.io