diff options
Diffstat (limited to 'vendor/twbs/bootstrap-icons/.github/workflows/codeql.yml')
-rw-r--r-- | vendor/twbs/bootstrap-icons/.github/workflows/codeql.yml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap-icons/.github/workflows/codeql.yml b/vendor/twbs/bootstrap-icons/.github/workflows/codeql.yml new file mode 100644 index 000000000..0a2f4fa05 --- /dev/null +++ b/vendor/twbs/bootstrap-icons/.github/workflows/codeql.yml @@ -0,0 +1,44 @@ +name: "CodeQL" + +on: + push: + branches: + - main + - "!dependabot/**" + pull_request: + branches: + - main + - "!dependabot/**" + schedule: + - cron: "0 0 * * 0" + workflow_dispatch: + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Clone repository + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + config-file: ./.github/codeql/codeql-config.yml + languages: "javascript" + queries: +security-and-quality + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:javascript" |