Update dependency-review.yml #16
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: | |
| - master | |
| - support/SDK-V3 | |
| - feature/** | |
| - bugfix/** | |
| - dependabot/** | |
| - feature/security-workflows | |
| push: | |
| branches: | |
| - master | |
| - support/SDK-V3 | |
| - feature/** | |
| - bugfix/** | |
| - dependabot/** | |
| - feature/security-workflows | |
| workflow_dispatch: | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest # Specify the type of runner that the job will run on | |
| steps: | |
| - name: Checkout code # This step checks out the repository code | |
| uses: actions/checkout@v4 | |
| - name: Use Dependency Review Action from another repository | |
| uses: hyperwallet/public-security-workflows/.github/workflows/dependency-review.yml@main |