Merge pull request #757 from netbox-community/renovate/docker-login-action-2.x

Update docker/login-action action to v2
This commit is contained in:
Tobias Genannt 2022-05-06 08:53:08 +02:00 committed by GitHub
commit 6c9d4aebac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ jobs:
# docker.io
-
name: Login to docker.io
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.dockerhub_username }}
@ -56,7 +56,7 @@ jobs:
# quay.io
-
name: Login to Quay.io
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.quayio_username }}
@ -72,7 +72,7 @@ jobs:
# ghcr.io
-
name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}