-
Notifications
You must be signed in to change notification settings - Fork 2
Feature/402 nox session report resolved security issues #770
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
Changes from all commits
2ba062b
282591f
8b1e7b8
91aebce
8d097a5
9bd15c9
fc12b43
efc20f5
80533dd
f799f7a
8d6f7a4
bf09229
99d52ef
540b639
e8fe9a2
0e8eced
b732144
b14b070
22539a9
0de28bd
df330e1
59911f3
117362c
ae9a41d
05c2143
e70a2ef
c68943b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,12 @@ name: Merge-Gate | |
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| root-event: | ||
| description: GitHub event triggering the root workflow ci.yml | ||
| required: false | ||
| type: string | ||
| default: unknown | ||
|
|
||
| jobs: | ||
| run-fast-checks: | ||
|
|
@@ -15,12 +21,15 @@ jobs: | |
| needs: | ||
| - run-fast-checks | ||
| uses: ./.github/workflows/report.yml | ||
| with: | ||
| upload-metrics: false | ||
| secrets: inherit | ||
| permissions: | ||
| contents: read | ||
|
|
||
| approve-run-slow-tests: | ||
| name: Approve Running Slow Tests? | ||
| if: ${{ inputs.root-event != 'schedule' }} | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the purpose of this line? Was the intention to disable the approval for scheduled runs such that the slow tests run always? However, this leads to, that they don't run and the workflow is stuck. |
||
| runs-on: "ubuntu-24.04" | ||
| permissions: | ||
| contents: read | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,17 @@ | ||
| Managing dependencies | ||
| ===================== | ||
| Managing Dependencies and Vulnerabilities | ||
| ========================================= | ||
|
|
||
| +--------------------------+------------------+----------------------------------------+ | ||
| | Nox session | CI Usage | Action | | ||
| +==========================+==================+========================================+ | ||
| | ``dependency:licenses`` | ``report.yml`` | Uses ``pip-licenses`` to return | | ||
| | | | packages with their licenses | | ||
| +--------------------------+------------------+----------------------------------------+ | ||
| | ``dependency:audit`` | No | Uses ``pip-audit`` to return active | | ||
| | | | vulnerabilities in our dependencies | | ||
| +--------------------------+------------------+----------------------------------------+ | ||
| +------------------------------+----------------+-------------------------------------+ | ||
| | Nox session | CI Usage | Action | | ||
| +==============================+================+=====================================+ | ||
| | ``dependency:licenses`` | ``report.yml`` | Uses ``pip-licenses`` to return | | ||
| | | | packages with their licenses | | ||
| +------------------------------+----------------+-------------------------------------+ | ||
| | ``dependency:audit`` | No | Uses ``pip-audit`` to report active | | ||
| | | | vulnerabilities in our dependencies | | ||
| +------------------------------+----------------+-------------------------------------+ | ||
| | ``vulnerabilities:resolved`` | No | Uses ``pip-audit`` to report known | | ||
| | | | vulnerabilities in dependencies | | ||
| | | | that have been resolved in | | ||
| | | | comparison to the last release. | | ||
| +------------------------------+----------------+-------------------------------------+ |
Uh oh!
There was an error while loading. Please reload this page.