mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-04-20 05:51:21 -04:00
- github/codeql-action 3.32.6 → 4.35.1 - seleniumbase 4.47.3 → 4.47.9 - react-router-dom 7.13.1 → 7.14.0 - docker/login-action 3.7.0 → 4.1.0 - tailwindcss 4.2.1 → 4.2.2 - @tailwindcss/vite 4.2.1 → 4.2.2 - @tailwindcss/postcss 4.2.1 → 4.2.2 - actions/setup-python 5.6.0 → 6.2.0 - docker/setup-buildx-action 3.12.0 → 4.0.0
39 lines
978 B
YAML
39 lines
978 B
YAML
name: CodeQL
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: "0 6 * * 1" # Weekly on Monday at 6am UTC
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
analyze:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
security-events: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [python, javascript-typescript]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v3
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v3
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v3
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|