From d490630485331c396db14e09fe427d53c8612858 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:04:12 +0100 Subject: [PATCH] Bump docker/login-action from 2 to 3 in /.github/actions/maven-build-and-tag (#347) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/actions/maven-build-and-tag/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/maven-build-and-tag/action.yml b/.github/actions/maven-build-and-tag/action.yml index c495186ed..db4a56a65 100644 --- a/.github/actions/maven-build-and-tag/action.yml +++ b/.github/actions/maven-build-and-tag/action.yml @@ -140,7 +140,7 @@ runs: - name: Login to DockerHub Registry if: inputs.docker-username != '' && (github.event_name == 'push' || env.IS_PREVIEW == 'true') - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: docker.io username: ${{ inputs.docker-username }} @@ -148,7 +148,7 @@ runs: - name: Login to Quay.io Docker Registry if: inputs.quay-username != '' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ inputs.quay-username }} @@ -156,7 +156,7 @@ runs: - name: Login to ghcr.io Docker Registry if: inputs.ghcr-username != '' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ inputs.ghcr-username }}