Explore ways to consolidate Checkstyle and Codenarc errors into single file for GitHub workflow
Issue description
https://github.com/apache/grails-core/actions/runs/17872742072
Currently on the GitHub workflow you can download a zip with a file per subproject for Checkstyle and Codenarc with success and failure, which makes it difficult to quickly find the failure.
Locally the task output links you to the failure report(s)
@Vampire, is it possible to get Renovate to update the Kotlin files as well?
Yes, but we should not currently. As I already wrote in two other PRs before. We can do something like
packageRules: [
{
groupName: "actions-checkout",
matchPackageNames: [
"actions/checkout",
"/^actions:checkout(__.*)?$/"
]
}
]
But this currently produces rubbish as Renovate has f***** up maven range handling.
After https://github.com/renovatebot/renovate/discussions/37703 got a helpful answer, or most probably after my bug-fixes at https://github.com/renovatebot/renovate/pulls/Vampire were merged, we should be able to make the according configuration.
Until then it is good that the PRs are not mergeable, as they produce rubbish. Alternatively we could for the time being disable those updates.
If I see it correctly, typesafegithub does not even support v6 at the moment.
https://github.com/typesafegithub/github-actions-typing-catalog/issues/123