feat: Relax Base64 auth provider and ignore path segments in Docker registry URLs #2515
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: CodeQL | |
| on: | |
| push: | |
| branches: [ develop, main ] | |
| paths-ignore: [ 'docs/**', 'examples/**' ] | |
| pull_request: | |
| branches: [ develop, main ] | |
| paths-ignore: [ 'docs/**', 'examples/**' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ csharp ] | |
| permissions: | |
| security-events: write | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v3 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 |