Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker-cicd-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ jobs:
# repeat this for other registries you want to use
# especially the official Docker Hub Registry
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
# change the username into yours if not using our bot, might use
Expand All @@ -94,7 +94,7 @@ jobs:
# you need to manually add our bot with write access if you use our PAT
password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }}
- name: Login to Red Hat Quay Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: quay.io
# change the username into yours if not using our bot
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-cicd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
# repeat this for other registries you want to use
# especially the official Docker Hub Registry
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
# change the username into yours if not using our bot, might use
Expand All @@ -65,7 +65,7 @@ jobs:
# you need to manually add our bot with write access if you use our PAT
password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }}
- name: Login to Red Hat Quay Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: quay.io
# change the username into yours if not using our bot
Expand Down Expand Up @@ -121,20 +121,20 @@ jobs:
# repeat this for other registries you want to use
# especially the official Docker Hub Registry
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
# change the username into yours if not using our bot
username: RecapTimeBot
# you need to manually add our bot with write access if you use our PAT
password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }}
- name: Login to Red Hat Quay Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: quay.io
# change the username into yours if not using our bot
Expand Down