Skip to content

Commit b940c85

Browse files
committed
Update docker/login-action version
1 parent 5e2cb77 commit b940c85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dockerhub-deploy.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
type: string
1010

1111
# TODO ask admins to configure GitHub Secrets
12-
docker_password:
13-
description: 'DockerHub Password'
12+
docker_token:
13+
description: 'DockerHub Token'
1414
required: true
1515
type: string
1616

@@ -48,10 +48,10 @@ jobs:
4848
pytest test -v -m 'CI'"
4949
5050
- name: Login to DockerHub
51-
uses: docker/login-action@v1
51+
uses: docker/login-action@v3
5252
with:
5353
username: ${{ github.event.inputs.docker_username }}
54-
password: ${{ github.event.inputs.docker_password }}
54+
password: ${{ github.event.inputs.docker_token }}
5555

5656
- name: Push Docker image
5757
run: |

0 commit comments

Comments
 (0)