Fix Docker action versions to use stable v4 releases

This commit is contained in:
Tomas Dvorak
2026-02-27 17:57:15 +01:00
parent be8e2ae040
commit 86a61b20df
+4 -4
View File
@@ -117,7 +117,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Log in to Container Registry - name: Log in to Container Registry
uses: docker/login-action@v4 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: ${{ github.actor }}
@@ -125,7 +125,7 @@ jobs:
- name: Extract metadata - name: Extract metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v4
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: | tags: |
@@ -135,7 +135,7 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push backend image - name: Build and push backend image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v4
with: with:
context: ./backend context: ./backend
push: true push: true
@@ -143,7 +143,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
- name: Build and push frontend image - name: Build and push frontend image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v4
with: with:
context: ./frontend context: ./frontend
push: true push: true