Kernel optimizations: Integrated O(k) metadata, LRU query cache, pre-compiled hooks #620
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: "Dependency Review" | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 3 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@v4 | |
| with: | |
| # Fail the action if vulnerabilities with severity >= moderate are detected | |
| fail-on-severity: moderate | |
| # Warn about deprecated packages | |
| warn-on-deprecated: true | |
| # Use config file to set OpenSSF Scorecard threshold | |
| config-file: './.github/dependency-review-config.yml' | |
| # Don't auto-comment on PR to avoid hitting GitHub's 64KB comment size limit | |
| # Users can view the full report in the Actions tab or download the artifact |