Update AEP Specs 2026-06-12 #24
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: Dependency Audit | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| schedule: | |
| # Weekly, Mondays at 09:00 UTC | |
| - cron: "0 9 * * 1" | |
| workflow_dispatch: | |
| concurrency: | |
| group: audit-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| audit: | |
| name: npm audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| # Informational for now: known remaining advisories require major | |
| # framework migrations (tracked separately). Does not block merges. | |
| - name: Audit production dependencies | |
| continue-on-error: true | |
| run: npm audit --omit=dev --audit-level=high |