-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[fix][ci] Fix OWASP dep check GH actions workflow #21831
Conversation
- Fix "Invalid workflow file" error - follow up for apache#21826 - GHA requires "if: ${{ !cancelled() }}"
Testing the fix here: https://github.com/lhotari/pulsar/actions/runs/7383379592/job/20084483283 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
One more test run here with more useful scanning for tiered-storage/offloaders and pulsar-io connectors: https://github.com/lhotari/pulsar/actions/runs/7383922078/job/20085915493 |
/pulsarbot rerun-failure-checks |
Motivation
Fix "Invalid workflow file" error
follow up for [improve][ci] Run OWASP dependency check for offloaders and pulsar-io even when main check fails #21826
GHA requires "if: ${{ !cancelled() }}"
The scan results for offloaders and pulsar-io don't contain any results when the distributions are scanned. It is necessary to scan each individual project.
Modifications
if: !cancelled()
->if: ${{ !cancelled() }}
Documentation
doc
doc-required
doc-not-needed
doc-complete