@@ -28,16 +28,16 @@ jobs:
28
28
29
29
steps :
30
30
- name : Checkout repository
31
- uses : actions/checkout@v2
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Set up Docker Buildx
34
- uses : docker/setup-buildx-action@v1
34
+ uses : docker/setup-buildx-action@v3
35
35
36
36
# Login against a Docker registry except on PR
37
37
# https://github.com/docker/login-action
38
38
- name : Log into registry ${{ env.REGISTRY }}
39
39
if : github.event_name != 'pull_request'
40
- uses : docker/login-action@v1
40
+ uses : docker/login-action@v3
41
41
with :
42
42
registry : ${{ env.REGISTRY }}
43
43
username : ${{ github.actor }}
@@ -47,14 +47,14 @@ jobs:
47
47
# https://github.com/docker/metadata-action
48
48
- name : Extract Docker metadata
49
49
id : meta
50
- uses : docker/metadata-action@v3
50
+ uses : docker/metadata-action@v5
51
51
with :
52
52
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
53
53
54
54
# Build and push Docker image with Buildx (don't push on PR)
55
55
# https://github.com/docker/build-push-action
56
56
- name : Build and push Docker image
57
- uses : docker/build-push-action@v2
57
+ uses : docker/build-push-action@v5
58
58
with :
59
59
context : .
60
60
platforms : linux/amd64,linux/arm64
0 commit comments