Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Fix depot build-push-action version and drop invalid builder argument #7

Merged
merged 1 commit into from
Feb 7, 2024
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
3 changes: 1 addition & 2 deletions .github/workflows/docker-capture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:

- name: Build and push capture
id: docker_build_capture
uses: depot/build-push-action@v4
uses: depot/build-push-action@v1
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docker-hook-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:

- name: Build and push api
id: docker_build_hook_api
uses: depot/build-push-action@v4
uses: depot/build-push-action@v1
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docker-hook-janitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:

- name: Build and push janitor
id: docker_build_hook_janitor
uses: depot/build-push-action@v4
uses: depot/build-push-action@v1
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docker-hook-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:

- name: Build and push worker
id: docker_build_hook_worker
uses: depot/build-push-action@v4
uses: depot/build-push-action@v1
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docker-migrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:

- name: Build and push migrator
id: docker_build_hook_migrator
uses: depot/build-push-action@v4
uses: depot/build-push-action@v1
with:
context: ./
file: ./Dockerfile.migrate
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
Loading