Search param cache refresh coordination between API and background #22281
Workflow file for this run
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: "Code Scanning - Action" | |
| on: | |
| push: | |
| branches: main | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.json' | |
| - '**/*.http' | |
| pull_request: | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.json' | |
| - '**/*.http' | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| CodeQL-Build: | |
| permissions: | |
| actions: read | |
| contents: read | |
| pull-requests: write | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['csharp', 'javascript'] | |
| # runs-on: [self-hosted, 1ES.Pool=GithubRunPool] | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Fetch all history for all tags and branches | |
| run: | | |
| git fetch --prune --unshallow | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: ./global.json | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| config: | | |
| queries: | |
| - uses: security-and-quality | |
| query-filters: | |
| - exclude: | |
| id: | |
| - cs/web/missing-function-level-access-control | |
| - name: dotnet restore | |
| run: dotnet restore | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |