Void (deps): Bump csv from 3.3.0 to 3.3.2 (#90) #284
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 Scan" | |
on: | |
push: | |
branches: [develop, archive, master] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [develop] | |
paths-ignore: | |
- '.bundle' | |
- '.github' | |
- '.gitignore' | |
- '.jekyll-cache' | |
- '.ruby-version' | |
- '_config.yml' | |
- 'Gemfile*' | |
- 'LICENSE' | |
- 'Rakefile' | |
- '*.gemspec' | |
- '*.ico' | |
- '*.md' | |
- '*.txt' | |
- '*.yml' | |
- '_drafts/' | |
- '_includes/' | |
- 'blog/' | |
- 'example-images/' | |
- 'assets/css/' | |
- 'assets/images/' | |
- 'vendor/' | |
schedule: | |
- cron: '0 23 * * 5' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
permissions: | |
# required for all workflows | |
security-events: write | |
# required to fetch internal or private CodeQL packs | |
packages: read | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Override automatic language detection by changing the below list | |
# Supported options are ['c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'] | |
- language: 'javascript-typescript' | |
build-mode: none | |
# Learn more... | |
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# We must fetch at least the immediate parents so that if this is | |
# a pull request then we can checkout the head. | |
fetch-depth: 2 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
config-file: './.github/codeql/codeql-config.yml' | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |