Update default bundle to 2.16.3 #3273
Workflow file for this run
This file contains 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: Check queries that ran | |
on: | |
push: | |
branches: | |
- main | |
- releases/v* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
workflow_dispatch: {} | |
jobs: | |
expected-queries: | |
name: Expected Queries Tests | |
env: | |
CODEQL_ACTION_TEST_MODE: true | |
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 | |
- uses: ./../action/init | |
with: | |
languages: javascript | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- uses: ./../action/analyze | |
with: | |
output: ${{ runner.temp }}/results | |
upload-database: false | |
upload: never | |
- name: Check Sarif | |
uses: ./../action/.github/actions/check-sarif | |
with: | |
sarif-file: ${{ runner.temp }}/results/javascript.sarif | |
queries-run: js/incomplete-hostname-regexp,js/path-injection | |
queries-not-run: foo,bar |