Add govulncheck CI workflow#97
Conversation
|
|
||
| name: govulncheck | ||
| on: | ||
| pull_request: |
There was a problem hiding this comment.
I think it might be more useful to run periodically on the merged code, since vulns can appear even with no pull request, and probably aren't related to the pull request?
There was a problem hiding this comment.
Added a cron.
There was a problem hiding this comment.
I think we should drop the PR flow as well, so it doesn't block PRs while we remediate.
| runs-on: ubuntu-latest | ||
| steps: | ||
| - id: govulncheck | ||
| uses: golang/govulncheck-action@v1 |
There was a problem hiding this comment.
does this do symbol level by default, or only package level?
There was a problem hiding this comment.
I believe it does symbol level by default.
There was a problem hiding this comment.
OK, I'd like to make sure it is symbol level to cut down noise.
There was a problem hiding this comment.
AIUI in Kubernetes it is only running at the package level.
646d703 to
819c706
Compare
Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
819c706 to
516cecb
Compare
|
Skim — clean addition; the minimal-scope One observation worth raising before this lands:
Q: is the schedule-only shape intentional (e.g. to defer the cost of a PR-time check until governance lands), or would you accept a follow-up adding the PR-trigger? |
| name: govulncheck | ||
| on: | ||
| schedule: | ||
| - cron: "37 4 * * 1" |
There was a problem hiding this comment.
let's also run on push to main
No description provided.