-
Bug
-
Resolution: Cannot Reproduce
-
Minor
-
None
After upgrading from 5.1.2 to 5.2.0, jobs no longer show dependency check trends.
From a quick glance an the code, [JENKINS-67870] Add project action Latest Dependency-Check might be the culprit:
@Override public Collection<? extends Action> getProjectActions() { if (!run.getActions(ResultProjectAction.class).isEmpty()) { // someone already added one return Collections.emptySet(); } return Collections.singleton(new ResultProjectAction(run.getParent())); }
This probably should return JobAction + ResultProjectAction (the former was removed by JENKINS-67870).