From 39e71651e722ae157bc3e1c94a639e8ce4f21c10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 10:01:03 +0000 Subject: [PATCH] Bump docker/login-action in /.github/actions/maven-build-and-tag 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/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 2b4663a6f..06d4bfecd 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 }}