Skip to content

Commit 926c52f

Browse files
committed
Disable provenance in Docker publish workflows
Set 'provenance: false' in all Docker publish GitHub Actions workflows for both amd64 and arm64 images. This change disables provenance generation during image builds.
1 parent 22feb5c commit 926c52f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/publish-docker-full-amd64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
file: Dockerfile
3535
push: true
3636
platforms: linux/amd64
37+
provenance: false
3738
tags: |
3839
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }}-amd64
3940
ghcr.io/${{ github.repository }}:latest-amd64

.github/workflows/publish-docker-full-arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
file: Dockerfile
3838
push: true
3939
platforms: linux/arm64
40+
provenance: false
4041
tags: |
4142
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }}-arm64
4243
ghcr.io/${{ github.repository }}:latest-arm64

.github/workflows/publish-docker-proxy-amd64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
file: Dockerfile.proxy_only
3535
push: true
3636
platforms: linux/amd64
37+
provenance: false
3738
tags: |
3839
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }}-proxy-amd64
3940
ghcr.io/${{ github.repository }}:latest-proxy-amd64

.github/workflows/publish-docker-proxy-arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
file: Dockerfile.proxy_only
3838
push: true
3939
platforms: linux/arm64
40+
provenance: false
4041
tags: |
4142
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }}-proxy-arm64
4243
ghcr.io/${{ github.repository }}:latest-proxy-arm64

0 commit comments

Comments
 (0)