Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump docker/build-push-action from 3 to 6 #398

Merged
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:

# First build the base image locally (needed for subsequent builds)
- name: Build Docker image (base)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
tags: gptme:latest
file: ./scripts/Dockerfile
Expand All @@ -113,7 +113,7 @@ jobs:

# Push base image to registry if on master/tag
- name: Push Docker image (base)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
if: env.SHOULD_PUSH == 'true'
with:
tags: |
Expand All @@ -125,7 +125,7 @@ jobs:

# Build and push eval image
- name: Build and push Docker image (eval)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
tags: |
ghcr.io/${{ env.OWNER_LC }}/gptme-eval:latest
Expand All @@ -137,7 +137,7 @@ jobs:
# Now the full eval image
# NOTE: takes a long time and leads to a big (1GB+) image
#- name: Build and push Docker image (eval-full)
# uses: docker/build-push-action@v3
# uses: docker/build-push-action@v6
# with:
# tags: |
# ghcr.io/${{ env.OWNER_LC }}/gptme-eval-full:latest
Expand Down
Loading