How would you build your code within the CodeQL analysis workflow? Each answer presents a complete solution. (Choose two.)
Select an option, then click Submit answer.
Reference / correct answer:
Use CodeQL’s autobuild action.
Most accepted answer: B. Use CodeQL’s autobuild action.
Community votes: B=1, F=1
Selected Answer: BF In a CodeQL analysis workflow, there are two supported ways to build your code: B. Use CodeQL’s autobuild action ✅ CodeQL provides an autobuild step that automatically detects and builds your project. This is the simplest and recommended option when your project uses a common build system. F. Implement custom build steps ✅ If autobuild doesn’t work (e.g., complex or custom build process), You can define your own manual build steps in the workflow. upvoted 1 times