Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

build(deps): bump docker/login-action from 2 to 3 #872

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/generate-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: 🤳 Build Native Quarkus
run: mvn -B install -Pnative -Dquarkus.native.native-image-xmx=5g
- name: 📤 Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
env:
username: ${{ secrets.DOCKER_USERNAME }}
if: ${{env.username != ''}}
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
name: macos-native-build
path: api/target/kaoto-runner
- name: 📤 Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
env:
username: ${{ secrets.DOCKER_USERNAME }}
if: ${{env.username != ''}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
#

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.docker-username }}
password: ${{ secrets.docker-password }}
Expand All @@ -90,7 +90,7 @@ jobs:
# Quay
#
- name: Login to Quay.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.quay-username }}
Expand Down