Skip to content

Commit

Permalink
Bump docker/login-action in /.github/actions/maven-build-and-tag
Browse files Browse the repository at this point in the history
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v2...v3)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 14, 2023
1 parent c422c2f commit 6f72531
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 6f72531

Please sign in to comment.