@@ -12,29 +12,29 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
18
19
- - uses : docker/setup-qemu-action@v2.1.0
20
- - uses : docker/setup-buildx-action@v2.5.0
19
+ - uses : docker/setup-qemu-action@v3
20
+ - uses : docker/setup-buildx-action@v3
21
21
22
22
- name : Log in to the ghcr
23
- uses : docker/login-action@v2.1.0
23
+ uses : docker/login-action@v3
24
24
with :
25
25
registry : ghcr.io
26
26
username : ${{ github.actor }}
27
27
password : ${{ secrets.GITHUB_TOKEN }}
28
28
29
29
- name : Log in to the docker
30
- uses : docker/login-action@v2.1.0
30
+ uses : docker/login-action@v3
31
31
with :
32
32
username : ${{ secrets.DOCKER_USERNAME }}
33
33
password : ${{ secrets.DOCKER_PASSWORD }}
34
34
35
35
- name : Docker meta
36
36
id : meta
37
- uses : docker/metadata-action@v4.4.0
37
+ uses : docker/metadata-action@v5
38
38
with :
39
39
images : |
40
40
ghcr.io/${{ github.repository }}
45
45
- name : Docker meta for debug version
46
46
if : ${{ github.ref == 'refs/heads/master' }}
47
47
id : debug-meta
48
- uses : docker/metadata-action@v4.4.0
48
+ uses : docker/metadata-action@v5
49
49
with :
50
50
images : |
51
51
ghcr.io/${{ github.repository }}
55
55
56
56
- name : Build and push image
57
57
if : ${{ steps.meta.outputs.tags != '' }}
58
- uses : docker/build-push-action@v4.0.0
58
+ uses : docker/build-push-action@v5
59
59
with :
60
60
context : " ."
61
61
platforms : linux/amd64,linux/arm64
64
64
65
65
- name : " [debug version] Build and push image"
66
66
if : ${{ github.ref == 'refs/heads/master' }}
67
- uses : docker/build-push-action@v4.0.0
67
+ uses : docker/build-push-action@v5
68
68
with :
69
69
context : " ."
70
70
platforms : linux/amd64,linux/arm64
0 commit comments