-
Notifications
You must be signed in to change notification settings - Fork 0
Migration final deploy #21
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
Conversation
…at only allow submissions from a subset of countries
Registrant country report for a challenge, to help with challenges that only allow submissions from a subset of countries
| jobs: | ||
| trivy-scan: | ||
| name: Use Trivy | ||
| runs-on: ubuntu-24.04 |
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.
[maintainability]
Consider using a stable version of Ubuntu, such as ubuntu-latest, instead of specifying ubuntu-24.04, which may not be officially released or supported yet. This ensures compatibility and reduces the risk of unexpected issues.
| ignore-unfixed: true | ||
| format: "sarif" | ||
| output: "trivy-results.sarif" | ||
| severity: "CRITICAL,HIGH,UNKNOWN" |
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.
[❗❗ correctness]
The severity level UNKNOWN is included, which might not be a standard severity level for Trivy. Verify if this is intended or if it should be removed to avoid potential misconfigurations.
No description provided.