add dangerous #24
Workflow file for this run
This file contains 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: 50-Dependency-Review | |
on: | |
# dependency scan works comparing pull requests to the base branch | |
pull_request: | |
# These types are all required for CRDA to scan pull requests correctly and securely. | |
types: [ opened, synchronize, reopened, labeled, edited ] | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
permissions: | |
contents: write | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- run: echo "${{ github.event_name }}" | |
# Use the dependency snapshot to detect transient dependencies | |
# https://github.com/actions/dependency-review-action/issues/595#event-10791333872 | |
- name: Submit Dependency Snapshot | |
uses: advanced-security/maven-dependency-submission-action@v3 | |
with: | |
directory: ${{ github.workspace }}/todo | |
- name: 'Dependency Review from PR' | |
uses: actions/dependency-review-action@v3 |