Skip to content

Commit

Permalink
Merge pull request #76 from stakater/renovate/docker-login-action-3.x
Browse files Browse the repository at this point in the history
Update docker/login-action action to v3
  • Loading branch information
karl-johan-grahn authored Oct 18, 2023
2 parents 9db5eec + 7cb11eb commit 2b27b4e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operator_pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_operator_image_and_bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
# For pushing operator image
- name: Login to Quay Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.OPERATORHUB_USERNAME }}
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Nexus Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.STAKATER_NEXUS_REGISTRY }}
username: ${{ secrets.STAKATER_NEXUS_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_container_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_container_only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
buildkitd-flags: --debug

- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
Expand Down

0 comments on commit 2b27b4e

Please sign in to comment.