Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-master-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ jobs:
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Build stage: Documentation compilation
- name: Build documentation image cache
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/build/Dockerfile
Expand All @@ -57,7 +57,7 @@ jobs:

# Runtime: Web image
- name: Build web image cache
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/runtime/web/Dockerfile
Expand All @@ -70,7 +70,7 @@ jobs:

# Runtime: API image
- name: Build API image cache
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/runtime/api/Dockerfile
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,19 +257,19 @@ jobs:

- name: Set up Docker Buildx
if: steps.check.outputs.should-build == 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to container registry
if: steps.check.outputs.should-build == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push base image
if: steps.check.outputs.should-build == 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/base/Dockerfile
Expand Down Expand Up @@ -317,10 +317,10 @@ jobs:
echo "✅ Verified - building commit: $CURRENT_SHA"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:

- name: Build documentation image
id: build-image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/build/Dockerfile
Expand All @@ -376,7 +376,7 @@ jobs:

- name: Build web image
id: web-image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/runtime/web/Dockerfile
Expand All @@ -397,7 +397,7 @@ jobs:

- name: Build API image
id: api-image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./infrastructure/docker/runtime/api/Dockerfile
Expand Down
Loading