Skip to content

Commit e09ec08

Browse files
Update README.MD
fix readme
1 parent 4ed79a2 commit e09ec08

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.MD

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Trend Micro Cloud One Container Security (Formerly Deep Security Smart Check)
1+
# Deep Security Smart Check
22

33
You can find the original code on: https://github.com/deep-security/smartcheck-scan-action
44

55
<img src="Trend-Micro-Logo.png">
66

7-
## Scan your containers with [Trend Micro Cloud One Container Security (Formerly Deep Security Smart Check)](https://www.trendmicro.com/smartcheck).
7+
## Scan your containers with [Deep Security Smart Check)](https://www.trendmicro.com/smartcheck).
88

99
This tool is used by the Deep Security Smart Check plugin for [Jenkins](https://plugins.jenkins.io/deepsecurity-smartcheck/) and can also be used as a [GitHub Action](https://github.com/features/actions).
1010

@@ -15,10 +15,10 @@ This tool is used by the Deep Security Smart Check plugin for [Jenkins](https://
1515

1616
## Usage
1717

18-
Add an Action in your `.github/workflow` yml file to scan your image with Trend Micro Cloud One Container Security.
18+
Add an Action in your `.github/workflow` yml file to scan your image with Deep Security Smart Check.
1919

2020
```yml
21-
- name: Cloud One Container Security Scan Action
21+
- name: Deep Security Smart Check Scan Action
2222
uses: felipecosta09/Deep-Security-Smart-Check-Scan-Action@version*
2323
with:
2424
# Mandatory
@@ -167,18 +167,18 @@ be given with `DSSC_IMAGE_NAME`.
167167
## Example Workflow Using Github Actions
168168

169169
```yml
170-
name: Cloud One Container Security
170+
name: Deep Security Smart Check
171171
172172
on:
173173
push:
174174
branches:
175175
- master
176176
177177
jobs:
178-
Cloud-One-Container-Security-Scan-Action:
178+
Deep-Security-Smart-Check-Scan-Action:
179179
runs-on: ubuntu-latest
180180
steps:
181-
- name: Cloud One Container Security Scan ECR
181+
- name: Deep Security Smart Check Scan ECR
182182
uses: felipecosta09/Deep-Security-Smart-Check-Scan-Action@version*
183183
with:
184184
DSSC_IMAGE_NAME: myECRrepo/myimage
@@ -205,18 +205,18 @@ jobs:
205205
## Example Workflow Running a Docker Container
206206

207207
```yml
208-
name: Cloud One Container Security Pipeline Example
208+
name: Deep Security Smart Check Pipeline Example
209209
210210
on:
211211
push:
212212
branches:
213213
- master
214214
215215
jobs:
216-
Cloud-One-Container-Security-Scan-Action:
216+
Deep-Security-Smart-Check-Scan-Action:
217217
runs-on: ubuntu-latest
218218
steps:
219-
- name: Cloud One Container Security
219+
- name: Deep Security Smart Check
220220
run: |
221221
docker run -v /var/run/docker.sock:/var/run/docker.sock deepsecurity/smartcheck-scan-action --image-name MYREGISTRY/MYIMAGE --smartcheck-host=DSSC_URL --smartcheck-user=DSSC_USER --smartcheck-password=DSSC_PASSSWORD --insecure-skip-tls-verify --insecure-skip-registry-tls-verify --image-pull-auth='{"aws":{"region":"us-east-1","accessKeyID":"'$AWS_ACCESS_KEY_ID'","secretAccessKey":"'$AWS_SECRET_ACCESS_KEY'"}}' --findings-threshold '{"malware": 100, "vulnerabilities": { "defcon1": 100, "critical": 100, "high": 100 }, "contents": { "defcon1": 100, "critical": 100, "high": 100 }, "checklists": { "defcon1": 100, "critical": 100, "high": 100 }}'
222222

0 commit comments

Comments
 (0)