Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIV-244 Remove provenance option #239

Merged
merged 1 commit into from
Apr 2, 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
7 changes: 1 addition & 6 deletions .github/workflows/template_gitops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ on:
docker-build-target:
required: false
type: string
docker-build-provenance:
required: false
type: string
default: 'false'
docker-file:
required: false
type: string
Expand Down Expand Up @@ -62,14 +58,13 @@ jobs:
uses: actions/checkout@v4

- name: GitOps (build, push and deploy a new Docker image)
uses: Staffbase/gitops-github-action@v5.3
uses: Staffbase/gitops-github-action@v5.4
with:
docker-username: ${{ secrets.docker-username }}
docker-password: ${{ secrets.docker-password }}
docker-build-args: |
${{ inputs.docker-build-args }}
GONOSUMDB=${{ secrets.gonosumdb }}
docker-build-provenance: ${{ inputs.docker-build-provenance }}
docker-build-secrets: ${{ secrets.docker-build-secrets }}
docker-build-secret-files: ${{ secrets.docker-build-secret-files }}
docker-build-target: ${{ inputs.docker-build-target }}
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@ jobs:
# optional: list of build-time variables
docker-build-args: |
"any important args"
# optional: generate provenance attestation for the build, default: false
docker-build-provenance: "mode=min,inline-only=true"
# optional: set the target stage to build
docker-build-target: "any target"
# optional: path to the Dockerfile, default: ./Dockerfile
Expand Down
Loading