From 05a1751d71a83f4423573cc3fbbb3aa106636551 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 07:06:32 +0000 Subject: [PATCH] Bump docker/login-action from 2 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docker-build-push-dockerhub.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build-push-dockerhub.yml b/.github/workflows/docker-build-push-dockerhub.yml index 03c3c3a84..01ca0f640 100644 --- a/.github/workflows/docker-build-push-dockerhub.yml +++ b/.github/workflows/docker-build-push-dockerhub.yml @@ -41,7 +41,7 @@ jobs: git submodule update --init - name: Log in to the Docker Hub registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: # Username used to log against the Docker registry username: ${{ secrets.DOCKER_HUB_USERNAME }} @@ -51,7 +51,7 @@ jobs: logout: true # optional, default is true - name: Log in to the Github Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}