Skip to content

Commit 9da1b8a

Browse files
committed
upgrade docker github actions tools
1 parent 618628c commit 9da1b8a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-docker.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
echo "REACT_APP_BUILD_TIME=$(date)" >> $GITHUB_ENV
2929
- name: Set up Docker Buildx
3030
id: buildx
31-
uses: docker/setup-buildx-action@v1
31+
uses: docker/setup-buildx-action@v3
3232
- name: Login to GHCR
3333
if: ${{ env.push == 'true' }}
34-
uses: docker/login-action@v1
34+
uses: docker/login-action@v3
3535
with:
3636
registry: ghcr.io
3737
username: ${{ github.repository_owner }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939

4040
- name: Build Frontend
41-
uses: docker/build-push-action@v2
41+
uses: docker/build-push-action@v6
4242
with:
4343
context: .
4444
file: Dockerfiles/Dockerfile.frontend
@@ -50,15 +50,15 @@ jobs:
5050
push: ${{ env.push }}
5151
tags: ghcr.io/dedis/d-voting-frontend:${{ env.DockerTag }}
5252
- name: Build Backend
53-
uses: docker/build-push-action@v2
53+
uses: docker/build-push-action@v6
5454
with:
5555
context: .
5656
file: Dockerfiles/Dockerfile.backend
5757
platforms: linux/amd64
5858
push: ${{ env.push }}
5959
tags: ghcr.io/dedis/d-voting-backend:${{ env.DockerTag }}
6060
- name: Build D-Voting
61-
uses: docker/build-push-action@v2
61+
uses: docker/build-push-action@v6
6262
with:
6363
context: .
6464
file: Dockerfiles/Dockerfile.dela

0 commit comments

Comments
 (0)