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
Copy file name to clipboardExpand all lines: README.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ steps:
33
33
- uses: actions/checkout@v3
34
34
35
35
- name: Run Microsoft Security DevOps
36
-
uses: microsoft/security-devops-action@v1
36
+
uses: microsoft/security-devops-action@latest
37
37
id: msdo
38
38
```
39
39
@@ -50,17 +50,10 @@ To upload results to the Security tab of your repo, run the `github/codeql-actio
50
50
51
51
## Advanced
52
52
53
-
To configure **Container Mapping** to send to **Microsoft Defender for DevOps**, include `container-mapping` as a tool:
54
-
```yaml
55
-
- uses: microsoft/security-devops-action@v1
56
-
id: msdo
57
-
with:
58
-
includeTools: container-mapping
59
-
```
53
+
To only run specific analyzers, use the `tools` command. This command is a comma-seperated list of tools to run. For example, to run only the `container-mapping` tool, configure this action as follows:
60
54
61
-
This will run all the analyzers defined by the configured or defaulted policy in addition to `container-mapping`. To only run this feature, define `container-mapping` as the only `tool` to run:
62
55
```yaml
63
-
- uses: microsoft/security-devops-action@v1
56
+
- uses: microsoft/security-devops-action@latest
64
57
id: msdo
65
58
with:
66
59
tools: container-mapping
@@ -77,6 +70,7 @@ This will run all the analyzers defined by the configured or defaulted policy in
0 commit comments