-
Notifications
You must be signed in to change notification settings - Fork 64
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
ci: Configure CodeQL Workflow, Unify <langVersion> #2159
Conversation
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
Holding this PR until @nrcventura has a chance to review and chime in on the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I like standardizing on the default language per target framework version. 👍
This PR introduces a new workflow to run CodeQL, superseding the "default" configuration that was recently enabled for all repos in the New Relic org.
For the time being, we will only scan C# projects, as we can (apparently) have only a single CodeQL workflow per repo, and our C++ projects have to build on Windows 2019, while our C# projects have to build on Windows 2022.I was able to get the scan to run on both C# and C++. Yay!
Results for the analysis on this PR are at: https://github.com/newrelic/newrelic-dotnet-agent/security/code-scanning?query=tool%3ACodeQL+pr%3A2159 -- there doesn't seem to be anything for C++, so I guess that code is solid. The other items reported for C# are either used in tests or false positives.
The other (somewhat huge) set of changes in this PR is to eliminate explicit use of
<langVersion>
attributes in .csproj files (which specified wildly different versions), in favor of a single, unified<langVersion>default</langVersion>
in the baseDirectory.Build.props
file. Aside from ensuring that all projects build with the correct language version (based on the tfm), this also helps alleviate some issues with the CodeQL scanning tool, as it was unhappy about using certain hard-coded language versions.