Skip to content

Commit

Permalink
build(deps): bump docker/build-push-action from 3 to 6 (#398)
Browse files Browse the repository at this point in the history
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 6.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v6)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 11, 2025
1 parent a825abf commit 32ff9c5
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 32ff9c5

Please sign in to comment.