File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
18
18
- name : Set up QEMU
19
- uses : docker/setup-qemu-action@v2
19
+ uses : docker/setup-qemu-action@v3
20
20
21
21
- name : Set up Docker Buildx
22
22
id : buildx
23
- uses : docker/setup-buildx-action@v2
23
+ uses : docker/setup-buildx-action@v3
24
24
25
25
- name : Extract Docker sha tag
26
26
id : get-tag-sha
@@ -31,22 +31,22 @@ jobs:
31
31
32
32
- name : Extract Docker latest tag
33
33
id : get-tag-latest
34
- uses : docker/metadata-action@v4
34
+ uses : docker/metadata-action@v5
35
35
with :
36
36
images : ${{ env.IMAGE_NAME }}
37
37
tags : type=raw, value=latest
38
38
39
39
- name : Log in to Docker Hub
40
40
if : ${{ github.ref_name == 'main' }}
41
41
id : login
42
- uses : docker/login-action@v2
42
+ uses : docker/login-action@v3
43
43
with :
44
44
username : ${{ secrets.DOCKERHUB_USERNAME }}
45
45
password : ${{ secrets.DOCKERHUB_TOKEN }}
46
46
47
47
- name : Build and Push
48
48
id : build-and-push
49
- uses : docker/build-push-action@v3
49
+ uses : docker/build-push-action@v6
50
50
with :
51
51
context : .
52
52
file : ./Dockerfile
You can’t perform that action at this time.
0 commit comments