Skip to content

Commit

Permalink
Bump docker/login-action from 2 to 3 in /.github/actions/maven-build-…
Browse files Browse the repository at this point in the history
…and-tag (#347)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 14, 2023
1 parent e6acc09 commit d490630
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/maven-build-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,23 +140,23 @@ 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 }}
password: ${{ inputs.docker-password }}

- 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 }}
password: ${{ inputs.quay-password }}

- 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 }}
Expand Down

0 comments on commit d490630

Please sign in to comment.