File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,17 @@ jobs:
28
28
echo "REACT_APP_BUILD_TIME=$(date)" >> $GITHUB_ENV
29
29
- name : Set up Docker Buildx
30
30
id : buildx
31
- uses : docker/setup-buildx-action@v1
31
+ uses : docker/setup-buildx-action@v3
32
32
- name : Login to GHCR
33
33
if : ${{ env.push == 'true' }}
34
- uses : docker/login-action@v1
34
+ uses : docker/login-action@v3
35
35
with :
36
36
registry : ghcr.io
37
37
username : ${{ github.repository_owner }}
38
38
password : ${{ secrets.GITHUB_TOKEN }}
39
39
40
40
- name : Build Frontend
41
- uses : docker/build-push-action@v2
41
+ uses : docker/build-push-action@v6
42
42
with :
43
43
context : .
44
44
file : Dockerfiles/Dockerfile.frontend
@@ -50,15 +50,15 @@ jobs:
50
50
push : ${{ env.push }}
51
51
tags : ghcr.io/dedis/d-voting-frontend:${{ env.DockerTag }}
52
52
- name : Build Backend
53
- uses : docker/build-push-action@v2
53
+ uses : docker/build-push-action@v6
54
54
with :
55
55
context : .
56
56
file : Dockerfiles/Dockerfile.backend
57
57
platforms : linux/amd64
58
58
push : ${{ env.push }}
59
59
tags : ghcr.io/dedis/d-voting-backend:${{ env.DockerTag }}
60
60
- name : Build D-Voting
61
- uses : docker/build-push-action@v2
61
+ uses : docker/build-push-action@v6
62
62
with :
63
63
context : .
64
64
file : Dockerfiles/Dockerfile.dela
You can’t perform that action at this time.
0 commit comments