0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/.github/workflows/codeql.yml

45 lines
913 B
YAML
Raw Normal View History

name: "CodeQL"
on:
push:
branches:
- main
- v4-dev
- "!dependabot/**"
pull_request:
branches:
- main
- v4-dev
- "!dependabot/**"
schedule:
2023-03-14 08:10:31 +01:00
- cron: "0 2 * * 4"
2021-12-02 22:02:11 +01:00
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
2021-09-14 08:07:59 +02:00
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
2022-11-14 17:40:09 +01:00
config-file: ./.github/codeql/codeql-config.yml
languages: "javascript"
2022-11-12 12:09:35 +01:00
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
2022-11-12 12:09:35 +01:00
with:
category: "/language:javascript"