ci: drop the trivy-sarif artifact upload the Actions budget rejects - #43
Merged
Merged
Conversation
The account's Actions storage quota rejects every actions/upload-artifact
call ("Artifact storage quota has been hit"). Per OW-1138, CI evidence
should not live in GitHub artifacts.
- .github/workflows/trivy.yml: deleted "Upload SARIF artifact"
(trivy-sarif). No reader anywhere in the repo (no codeql-action/
upload-sarif sink either).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
…ARIF With the SARIF artifact gone, the second scan wrote a file nothing read. It now emits JSON and prints CRITICAL/HIGH counts to the step summary. The scan stays advisory (--exit-code 0); the verdict is unchanged. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Summary
The Actions account's storage quota now rejects every
actions/upload-artifactcall ("Artifact storage quota has been hit"). Per the operator ruling (OW-1138), CI evidence should not live in GitHub artifacts..github/workflows/trivy.yml:119trivy-sarifSearched (
git grep -n "download-artifact\|trivy-sarif\|upload-sarif") — no consumer anywhere in the repo, and nocodeql-action/upload-sarifsink either (this repo has a separatecodeql.ymlfor that lane).Scope
Only the upload step changed. Job logic, runners, triggers and permissions are untouched. Note the trivy scan step that generates
trivy-results.sariffor that upload (--exit-code 0, still run) is left as-is per scope — it's now an orphaned producer the coordinator may want to remove separately.🤖 Generated with Claude Code