build(deps): bump actions/setup-node from 4.4.0 to 6.4.0 #7
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate plugin | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Validate manifest and assets | |
| run: npm test | |
| - name: Install Codex Plugin Scanner | |
| run: python3 -m pip install --user "codex-plugin-scanner[cisco]==2.0.12" | |
| - name: Scan plugin package | |
| run: | | |
| codex-plugin-scanner scan . \ | |
| --format json \ | |
| --cisco-skill-scan auto \ | |
| --min-score 95 \ | |
| --fail-on-severity medium |