fix(deps): upgrade dependencies [auto] #250
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: CodeQL | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
schedule: | |
- cron: "00 08 * * 2" # https://crontab.guru/#00_08_*_*_2 | |
permissions: | |
contents: read | |
statuses: write | |
jobs: | |
analyze: | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 180 | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] | |
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | |
language: ["javascript-typescript"] | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
# For more details on CodeQL's query packs | |
# refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | |
queries: security-and-quality | |
- name: Autobuild packages | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |