fix(cd): stop sending provenance attestation to GCOM#815
Open
xnyo wants to merge 5 commits into
Open
Conversation
GCOM no longer consumes the "provenanceAttestation" field (see grafana/grafana-com#18942), so it is no longer included in the plugin publish payload. The attestation machinery is intentionally kept in place: the `attestation` input, the `attestations: write` permission, the `build-attestation` job, the action's `provenance-attestation` input and the `--provenance-attestation` flag are all still present. Only the `provenanceAttestation` JSON field is omitted from the GCOM API call, and it is commented (in publish.sh) so it can be wired back in easily if needed. Docstrings are updated accordingly. Fixes #814
xnyo
force-pushed
the
giuseppe/remove-artifacts-attestation
branch
from
July 2, 2026 12:50
29b0fee to
4ccb259
Compare
…afana/plugin-ci-workflows into giuseppe/remove-artifacts-attestation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #814
GCOM no longer consumes the
provenanceAttestationfield (see grafana/grafana-com#18942), so this PR stops including it in the plugin publish payload. The input and provenance calculation steps are kept in case we decide to add it back. It's still possible to generate the attestation for the plugin in case it needs to be used for other reason (rather than POST-ing it to GCOM).