bump version to v0.22.4 and update CHANGELOG with CVE-2025-58187 fix #364
Workflow file for this run
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 / frontend | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/workflow/pr-codeql-frontend.yml' | |
| - '**/*.ts' | |
| - '**/*.tsx' | |
| - '!**/*.test.ts' | |
| - '!**/*.test.tsx' | |
| - '**/yarn.lock' | |
| - '**/package.json' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '.github/workflow/pr-codeql-frontend.yml' | |
| - '**/*.ts' | |
| - '**/*.tsx' | |
| - '!**/*.test.ts' | |
| - '!**/*.test.tsx' | |
| - '**/yarn.lock' | |
| - '**/package.json' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: "javascript" | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 |