junit5
junit5 copied to clipboard
Add separate `dependency-submission` workflow for GitHub actions
With the introduction of gradle/actions/dependency-submission
, it is now simpler (and recommended) to use a separate workflow for generation and submission of GitHub Dependency Graph.
This workflow attempts to detect and submit all dependencies that would be resolved during build execution, without requiring the execution of any particular task. In basic testing it appears that the generated dependency graph contains the same dependencies as before.
A few things to note: The new workflow will submit a dependency graph with a different "correlator" to the previous one. This means that duplicate dependencies (and alerts) may appear until the older graph ages out and is automatically purged. (Period of days).
Manually dismissed Dependabot Alerts may need to be re-dismissed after switching to the new workflow.
I hereby agree to the terms of the JUnit Contributor License Agreement.
Definition of Done
- [x] There are no TODOs left in the code
- [ ] Method preconditions are checked and documented in the method's Javadoc
- [ ] Coding conventions (e.g. for logging) have been followed
- [ ] Change is covered by automated tests including corner cases, errors, and exception handling
- [ ] Public API has Javadoc and
@API
annotations - [ ] Change is documented in the User Guide and Release Notes