diff options
| author | Laura <[email protected]> | 2023-01-18 15:25:21 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-18 15:25:21 -0800 |
| commit | 2c0c8763300988d92ddd139cadf012f5ab1b12e1 (patch) | |
| tree | be9afd1ab28f48e52d85b90d4f47f265840ae7ff /.github/workflows/Code-Scanning.yml | |
| parent | 29709008d34efefd594d7da5ef67ee0d66f615fd (diff) | |
| parent | 1a9dffb3c5be9cd8b78f9630c9a1f3f1e5171b44 (diff) | |
Merge pull request #826 from microsoft/lagonzacodescanning-reconfig
Re Configure Code-Scanning.yml
Diffstat (limited to '.github/workflows/Code-Scanning.yml')
| -rw-r--r-- | .github/workflows/Code-Scanning.yml | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/.github/workflows/Code-Scanning.yml b/.github/workflows/Code-Scanning.yml index 3f9d1b7a..2993c393 100644 --- a/.github/workflows/Code-Scanning.yml +++ b/.github/workflows/Code-Scanning.yml @@ -1,5 +1,5 @@ # This workflow runs the latest CodeQL CLI and checks against CodeQL's Cpp library. -# It will only analyze solutions which have been changed. +# This is the source for the GitHub Security Code Scanning job. name: "CodeQL Analysis" @@ -14,12 +14,6 @@ on: - main - develop - # Do not perform analysis if only config or text files are changed - paths-ignore: - - '**/*.md' - - '**/*.txt' - - '.github/**' - # Allow manual scheduling workflow_dispatch: @@ -51,15 +45,10 @@ jobs: - name: Add MSBuild to PATH uses: microsoft/[email protected] - - name: Get changed files - id: get-changed-files - uses: tj-actions/changed-files@v27 - - - name: Retrieve and build solutions from changed files - id: build-changed-projects + - name: Retrieve and build all available solutions + id: build-all-projects run: | - $changedFiles = "${{ steps.get-changed-files.outputs.all_changed_files }}".Split(' ') - .\.github\scripts\Build-ChangedProjects.ps1 -ChangedFiles $changedFiles + .\Build-AllProjects.ps1 env: Configuration: ${{ matrix.configuration }} Platform: ${{ matrix.platform }} |
