File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,23 +26,23 @@ jobs:
26
26
steps :
27
27
- name : Check out repository code
28
28
# https://github.com/marketplace/actions/checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
with :
31
31
fetch-depth : 0
32
32
33
33
- name : Set up QEMU
34
34
# https://github.com/marketplace/actions/docker-setup-qemu
35
- uses : docker/setup-qemu-action@v2
35
+ uses : docker/setup-qemu-action@v3
36
36
37
37
- name : Set up Docker Buildx
38
38
# https://github.com/marketplace/actions/docker-setup-buildx
39
- uses : docker/setup-buildx-action@v2
39
+ uses : docker/setup-buildx-action@v3
40
40
41
41
- name : Login to DockerHub Registry
42
42
# https://github.com/marketplace/actions/docker-login
43
43
# set the condition depending on whether you want to login to Docker.
44
44
if : true
45
- uses : docker/login-action@v2
45
+ uses : docker/login-action@v3
46
46
with :
47
47
username : ${{ secrets.DOCKERHUB_USERNAME }}
48
48
password : ${{ secrets.DOCKERHUB_TOKEN }}
51
51
# https://github.com/marketplace/actions/docker-login
52
52
# set the condition depending on whether you want to login to ghcr.io.
53
53
if : true
54
- uses : docker/login-action@v2
54
+ uses : docker/login-action@v3
55
55
with :
56
56
registry : ghcr.io
57
57
username : ${{ github.repository_owner }}
You can’t perform that action at this time.
0 commit comments