Update CHANGELOG.md with recent changes #110
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CodeQL Analysis" | |
| on: | |
| push: | |
| branches: [dev] | |
| pull_request: | |
| branches: [dev] | |
| schedule: | |
| - cron: "0 2 * * *" | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ["csharp"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| # Initializes the CodeQL tools and creates a CodeQL database | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| build-mode: none | |
| languages: ${{ matrix.language }} | |
| # If you have custom queries, you can add them here using a queries property | |
| # Autobuild attempts to build the C# project automatically. | |
| # For complex C# projects, you may need to replace this with custom build commands (e.g., using `dotnet build`) | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4 | |
| with: | |
| working-directory: ./Sources | |
| # Performs the CodeQL analysis and uploads the results to GitHub | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |