Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ jobs:
# image definition. NEXT_PUBLIC_* is deliberately left at the Dockerfile's
# defaults -- see the note on the build-args-free step below.
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: deploy/Dockerfile.frontend
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
type=raw,value=${{ steps.version.outputs.version }},enable={{is_default_branch}}

- name: Build and push backend
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: deploy/Dockerfile.backend
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
# derivation from the serving host. aragora.ai itself is built with explicit
# production values by deploy-frontend.yml's Vercel lane, not from this image.
- name: Build and push frontend
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: deploy/Dockerfile.frontend
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
type=raw,value=${{ steps.version.outputs.version }},enable={{is_default_branch}}

- name: Build and push operator
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: aragora-operator/
file: aragora-operator/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build frontend image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: deploy/Dockerfile.frontend
Expand Down
Loading