Skip to content

ci: pin third-party GitHub Actions to commit SHAs (#12) #36

ci: pin third-party GitHub Actions to commit SHAs (#12)

ci: pin third-party GitHub Actions to commit SHAs (#12) #36

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 5 * * 1' # Weekly Monday 05:00 UTC
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
language: ['javascript-typescript']
steps:
- uses: actions/checkout@v5
- uses: github/codeql-action/init@7fd177fa680c9881b53cdab4d346d32574c9f7f4 # v3
with:
languages: ${{ matrix.language }}
- uses: github/codeql-action/analyze@7fd177fa680c9881b53cdab4d346d32574c9f7f4 # v3
with:
category: '/language:${{ matrix.language }}'