You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
3
+
4
+
name: 'SCA - Dependency Review'
5
+
6
+
on:
7
+
pull_request:
8
+
branches: [ "main" ]
9
+
10
+
permissions:
11
+
contents: read
12
+
# Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option
13
+
pull-requests: write
14
+
15
+
jobs:
16
+
dependency-review:
17
+
runs-on: ubuntu-latest
18
+
steps:
19
+
- name: 'Checkout repository'
20
+
uses: actions/checkout@v4
21
+
- name: 'Dependency Review'
22
+
uses: actions/dependency-review-action@v4
23
+
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
0 commit comments