Use github merge-results
command for merging SARIF files
#3103
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: Query filters tests | |
on: | |
push: | |
branches: | |
- main | |
- releases/v* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
workflow_dispatch: {} | |
jobs: | |
query-filters: | |
name: Query Filters Tests | |
timeout-minutes: 45 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Prepare test | |
id: prepare-test | |
uses: ./.github/actions/prepare-test | |
with: | |
version: latest | |
- name: Check SARIF for default queries with Single include, Single exclude | |
uses: ./../action/.github/actions/query-filter-test | |
with: | |
sarif-file: ${{ runner.temp }}/results/javascript.sarif | |
queries-run: js/zipslip | |
queries-not-run: js/path-injection | |
config-file: ./.github/codeql/codeql-config-query-filters1.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Check SARIF for query packs with Single include, Single exclude | |
uses: ./../action/.github/actions/query-filter-test | |
with: | |
sarif-file: ${{ runner.temp }}/results/javascript.sarif | |
queries-run: js/zipslip,javascript/example/empty-or-one-block | |
queries-not-run: js/path-injection | |
config-file: ./.github/codeql/codeql-config-query-filters2.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Check SARIF for query packs and local queries with Single include, Single exclude | |
uses: ./../action/.github/actions/query-filter-test | |
with: | |
sarif-file: ${{ runner.temp }}/results/javascript.sarif | |
queries-run: js/zipslip,javascript/example/empty-or-one-block,inrepo-javascript-querypack/show-ifs | |
queries-not-run: js/path-injection,complex-python-querypack/show-ifs,complex-python-querypack/foo/bar/show-ifs | |
config-file: ./.github/codeql/codeql-config-query-filters3.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} |