From 292a31a780f69eb4192491505a0af4e156ff674d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 18:33:25 +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 59869b5..de407f5 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@v4 - 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 1b31571..2a3b216 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@v4 - 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 }}