build(deps): bump axios from 1.9.0 to 1.12.0 #441
This file contains hidden or 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 Advanced" | |
on: | |
push: | |
branches: [ "develop", "master" ] | |
pull_request: | |
branches: [ "develop" ] | |
workflow_dispatch: | |
schedule: | |
- cron: '* 5 * * 1' # Every Monday at 5 AM UTC | |
jobs: | |
analyze: | |
name: Analyze with CodeQL | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript' ] # TypeScript inclus | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: security-extended | |
source-root: src # 🔍 Analyse uniquement le dossier `src` | |
- name: Install dependencies with Yarn | |
run: yarn install --frozen-lockfile | |
- name: Build project with Yarn | |
run: yarn build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |