@@ -21,19 +21,19 @@ jobs:
21
21
packages : write
22
22
steps :
23
23
- name : Checkout sources
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v4
25
25
26
26
# Action reference: https://github.com/docker/setup-qemu-action
27
27
- name : Set up QEMU (for docker buildx)
28
- uses : docker/setup-qemu-action@v1
28
+ uses : docker/setup-qemu-action@v3
29
29
30
30
# Action reference: https://github.com/docker/setup-buildx-action
31
31
- name : Set up Docker Buildx
32
- uses : docker/setup-buildx-action@v1
32
+ uses : docker/setup-buildx-action@v3
33
33
34
34
# Action reference: https://github.com/docker/login-action
35
35
- name : Login to GitHub Container Registry
36
- uses : docker/login-action@v1
36
+ uses : docker/login-action@v3
37
37
with :
38
38
registry : ghcr.io
39
39
username : ${{ github.repository_owner }}
@@ -43,13 +43,13 @@ jobs:
43
43
# Action reference: https://github.com/ASzc/change-string-case-action
44
44
- id : repository_owner
45
45
name : lower case repository owner name
46
- uses : ASzc/change-string-case-action@v1
46
+ uses : ASzc/change-string-case-action@v6
47
47
with :
48
48
string : ${{ github.repository_owner }}
49
49
50
50
# Action reference: https://github.com/docker/build-push-action
51
51
- name : Build container
52
- uses : docker/build-push-action@v2
52
+ uses : docker/build-push-action@v5
53
53
with :
54
54
context : ./build/base
55
55
platforms : linux/amd64,linux/ppc64le
0 commit comments