Skip to content

Merge pull request #1018 from Hiroki-org/staging #1003

Merge pull request #1018 from Hiroki-org/staging

Merge pull request #1018 from Hiroki-org/staging #1003

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
branches: [main]
schedule:
- cron: "15 13 * * 1"
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [javascript-typescript, actions, python]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
- name: Autobuild
# actions 言語はワークフローファイルを静的解析するためビルド不要
if: matrix.language == 'javascript-typescript'
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: /language:${{ matrix.language }}