Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker/login-action action to v3 #160

Merged
merged 1 commit into from
Sep 12, 2023
Merged
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
4 changes: 2 additions & 2 deletions workflows/auth/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ runs:
- name: Login to Docker Hub
# Create a access token in docker hub -> settings -> security.
# Create two GitHub secrets REGISTRY_USERNAME and CONTAINER_REGISTRY.
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ inputs.REGISTRY_USERNAME }}
password: ${{ inputs.REGISTRY_TOKEN }}
registry: ${{ inputs.CONTAINER_REGISTRY }}

- name: Login to ghcr.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions workflows/tilt/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ runs:
- name: Login to Docker Hub
# Create a access token in docker hub -> settings -> security.
# Create two GitHub secrets REGISTRY_USERNAME and REGISTRY_TOKEN.
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ inputs.REGISTRY_USERNAME }}
password: ${{ inputs.REGISTRY_TOKEN }}
registry: ${{ inputs.CONTAINER_REGISTRY }}

- name: Login to ghcr.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
Loading