@@ -17,12 +17,12 @@ jobs:
17
17
18
18
steps :
19
19
- name : Checkout repository
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
22
22
# Login against a Docker registry
23
23
# https://github.com/docker/login-action
24
24
- name : Log into registry ${{ env.REGISTRY }}
25
- uses : docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
25
+ uses : docker/login-action@v3
26
26
with :
27
27
registry : ${{ env.REGISTRY }}
28
28
username : ${{ github.actor }}
@@ -32,16 +32,16 @@ jobs:
32
32
# https://github.com/docker/metadata-action
33
33
- name : Extract Docker metadata
34
34
id : meta
35
- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
35
+ uses : docker/metadata-action@v5
36
36
with :
37
37
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
38
38
39
39
# Build and push Docker image with Buildx
40
40
# https://github.com/docker/build-push-action
41
41
- name : Build and push Docker image
42
- uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
42
+ uses : docker/build-push-action@v5
43
43
with :
44
44
context : .
45
45
push : true
46
46
tags : ${{ steps.meta.outputs.tags }}
47
- labels : ${{ steps.meta.outputs.labels }}
47
+ labels : ${{ steps.meta.outputs.labels }}
0 commit comments