feat(ocap-kernel): leverage libp2p v3 features in remote communications #2048
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: MetaMask Security Code Scanner | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['main'] | |
| workflow_call: | |
| secrets: | |
| SECURITY_SCAN_METRICS_TOKEN: | |
| required: false | |
| APPSEC_BOT_SLACK_WEBHOOK: | |
| required: false | |
| workflow_dispatch: | |
| jobs: | |
| run-security-scan: | |
| name: Run security scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Analyze code | |
| uses: MetaMask/action-security-code-scanner@v1 | |
| with: | |
| repo: ${{ github.repository }} | |
| paths_ignored: | | |
| '**/*.test.js*' | |
| '**/*.test.ts*' | |
| '**/docs/' | |
| '**/playwright.config.ts' | |
| '**/test/' | |
| '**/vitest.config*.ts' | |
| node_modules | |
| project_metrics_token: ${{ secrets.SECURITY_SCAN_METRICS_TOKEN }} | |
| slack_webhook: ${{ secrets.APPSEC_BOT_SLACK_WEBHOOK }} |