From 740995169da09271161b3dd43023853f02fff022 Mon Sep 17 00:00:00 2001 From: Tim Dittler Date: Tue, 2 Apr 2024 11:42:56 +0200 Subject: [PATCH] Set provenance as always false --- README.md | 1 - action.yml | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 7ee3a84..fef7db0 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,6 @@ jobs: | `docker-build-secrets` | List of secrets to expose to the build (e.g., key=string, GIT_AUTH_TOKEN=mytoken) | | | `docker-build-secret-files` | List of secret files to expose to the build (e.g., key=filename, MY_SECRET=./secret.txt) | | | `docker-build-target` | Sets the target stage to build like: "runtime" | | -| `docker-build-provenance` | Generate [provenance](https://docs.docker.com/build/attestations/slsa-provenance/) attestation for the build | `mode=min,inline-only=true` | | `gitops-organization` | GitHub Organization for GitOps | `Staffbase` | | `gitops-repository` | GitHub Repository for GitOps | `mops` | | `gitops-user` | GitHub User for GitOps | `Staffbot` | diff --git a/action.yml b/action.yml index ee4ac24..9f9d39c 100644 --- a/action.yml +++ b/action.yml @@ -32,10 +32,6 @@ inputs: docker-build-target: description: "Sets the target stage to build" required: false - docker-build-provenance: - description: "Generate provenance attestation for the build" - required: false - default: 'mode=min,inline-only=true' gitops-organization: description: 'GitHub Organization for GitOps' required: true @@ -144,7 +140,7 @@ runs: platforms: linux/amd64 cache-from: type=gha cache-to: type=gha,mode=max - provenance: ${{ inputs.docker-build-provenance }} + provenance: false - name: Checkout GitOps Repository if: inputs.gitops-token != ''