chore(deps): update actions/upload-artifact digest to 6f51ac0 #270
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: Dependency Review Vulnerability Check On PR Workflow | |
on: | |
pull_request: | |
branches: [dev] | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
name: Dependency Review on PR Job | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout Repository Job | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Dependency Review on PR Step | |
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4 | |
with: | |
retry-on-snapshot-warnings: true | |
retry-on-snapshot-warnings-timeout: 600 |