chore(deps): update dependency @types/node to v26 #100
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: Security | |
| # Aggregated security scans: secret scanning (gitleaks), dependency review on | |
| # PRs, and a Node.js dependency audit. | |
| # | |
| # Top-level `permissions: {}` denies everything by default; each reusable | |
| # caller job re-declares the exact union its reusable requires, so the token | |
| # passed to each reusable is fully explicit and never relies on the repo | |
| # default (default_workflow_permissions). This is the same contract proven in | |
| # netresearch/.github's go-app / php-module templates. | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| gitleaks: | |
| uses: netresearch/.github/.github/workflows/gitleaks.yml@main | |
| permissions: | |
| contents: read | |
| security-events: write | |
| secrets: | |
| GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} | |
| dependency-review: | |
| if: github.event_name == 'pull_request' | |
| uses: netresearch/.github/.github/workflows/dependency-review.yml@main | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| node-audit: | |
| uses: netresearch/.github/.github/workflows/node-audit.yml@main | |
| permissions: | |
| contents: read | |
| with: | |
| package-manager: bun | |
| audit-level: high |