Skip to content

Commit

Permalink
fix docker build: deactive provenance, use version of build-push-action
Browse files Browse the repository at this point in the history
  • Loading branch information
koestler committed Sep 22, 2023
1 parent 62a267f commit 08944fe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: .
Expand Down Expand Up @@ -78,14 +78,15 @@ jobs:
uses: docker/setup-buildx-action@v2
- name: Build and push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: .
file: docker/Dockerfile
platforms: linux/arm/v7
tags: ${{ needs.metadata.outputs.img }}-arm-v7
labels: ${{ needs.metadata.outputs.labels }}
provenance: false

build-amd64:
runs-on: buildjet-2vcpu-ubuntu-2204
Expand All @@ -105,7 +106,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: .
Expand Down

0 comments on commit 08944fe

Please sign in to comment.