File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,27 +25,27 @@ jobs:
25
25
packages : write
26
26
steps :
27
27
- name : Checkout repository
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
29
29
30
30
- name : Setup Docker buildx
31
- uses : docker/setup-buildx-action@v2
31
+ uses : docker/setup-buildx-action@v3
32
32
33
33
- name : Log into registry ${{ env.REGISTRY }}
34
34
if : github.event_name != 'pull_request'
35
- uses : docker/login-action@v2
35
+ uses : docker/login-action@v3
36
36
with :
37
37
registry : ${{ env.REGISTRY }}
38
38
username : ${{ github.actor }}
39
39
password : ${{ secrets.GITHUB_TOKEN }}
40
40
41
41
- name : Extract Docker metadata
42
42
id : meta
43
- uses : docker/metadata-action@v4
43
+ uses : docker/metadata-action@v5
44
44
with :
45
45
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
46
46
47
47
- name : Build and push Docker image
48
- uses : docker/build-push-action@v4
48
+ uses : docker/build-push-action@v6
49
49
with :
50
50
context : .
51
51
push : ${{ github.event_name != 'pull_request' }}
You can’t perform that action at this time.
0 commit comments