Merge pull request #131 from strukturag/dependabot/github_actions/docker/login-action-2
Bump docker/login-action from 1 to 2
This commit is contained in:
commit
8c93c04d26
1 changed files with 2 additions and 2 deletions
4
.github/workflows/deploydocker.yml
vendored
4
.github/workflows/deploydocker.yml
vendored
|
|
@ -42,14 +42,14 @@ jobs:
|
|||
|
||||
- name: Login to Docker Hub
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v1
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||
|
||||
- name: Login to GHCR
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v1
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue