From 065da6ebb135c16a736fef09fa4f712c48bdf2e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 12:27:03 +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/container-image.yml | 4 ++-- .github/workflows/monthly-rebuild.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/container-image.yml b/.github/workflows/container-image.yml index 5b17ff4..f96bc71 100644 --- a/.github/workflows/container-image.yml +++ b/.github/workflows/container-image.yml @@ -49,12 +49,12 @@ jobs: - name: Set Up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log In to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/monthly-rebuild.yml b/.github/workflows/monthly-rebuild.yml index f20de0d..a5724ea 100644 --- a/.github/workflows/monthly-rebuild.yml +++ b/.github/workflows/monthly-rebuild.yml @@ -24,12 +24,12 @@ jobs: - name: Set Up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log In to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }}