Skip to content

Commit abeea1a

Browse files
1 parent af3159f commit abeea1a

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h2 id="specification">Specification</h2>
153153
<tr>
154154
<td>Security</td>
155155
<td>D301</td>
156-
<td>Security Scanning</td>
156+
<td>Vulnerability Scanning</td>
157157
<td>🟢</td>
158158
</tr>
159159
<tr>
@@ -245,7 +245,7 @@ <h2 id="badge-levels">Badge Levels</h2>
245245
<tr>
246246
<td>WIP</td>
247247
<td>0 - 29</td>
248-
<td><img alt="WIP" src="https://img.shields.io/badge/DevOps%20Maturity-WIP-red.svg"></td>
248+
<td><img alt="WIP" src="https://img.shields.io/badge/DevOps%20Maturity-WIP-blue.svg"></td>
249249
</tr>
250250
<tr>
251251
<td>PASSING</td>
@@ -331,52 +331,52 @@ <h2 id="criteria-details">Criteria Details</h2>
331331
<tr>
332332
<td>D101</td>
333333
<td>Branch Builds</td>
334-
<td>Supports builds from any specific branch, not just the <code>main</code> branch.</td>
334+
<td>Enables builds to be triggered from any Git branch, not limited to the main or default branch.</td>
335335
</tr>
336336
<tr>
337337
<td>D102</td>
338338
<td>Pull Request Builds</td>
339-
<td>Supports building pull requests (PRs), not limited to direct pushes to branches.</td>
339+
<td>Supports automatic builds for pull requests (PRs), allowing validation before merging into target branches.</td>
340340
</tr>
341341
<tr>
342342
<td>D103</td>
343343
<td>Clean Build Environments</td>
344-
<td>Supports building in clean environments, such as containers or VMs.</td>
344+
<td>Ensures builds run in isolated, reproducible environments (e.g., containers or virtual machines) to avoid contamination from previous runs.</td>
345345
</tr>
346346
<tr>
347347
<td>D201</td>
348348
<td>Unit Testing</td>
349-
<td>Supports unit testing, including unit or component-level tests.</td>
349+
<td>Supports execution of unit or component-level tests to validate individual functions or modules in isolation.</td>
350350
</tr>
351351
<tr>
352352
<td>D202</td>
353353
<td>Functional Testing</td>
354-
<td>Supports functional testing, such as integration or end-to-end (E2E) tests.</td>
354+
<td>Enables running functional, integration, or end-to-end (E2E) tests to validate system behavior and interactions.</td>
355355
</tr>
356356
<tr>
357357
<td>D203</td>
358358
<td>Performance Testing</td>
359-
<td>Supports performance testing, including load, stress, or throughput testing.</td>
359+
<td>Supports performance-related testing, such as load, stress, and scalability tests, to evaluate system responsiveness and stability under pressure.</td>
360360
</tr>
361361
<tr>
362362
<td>D204</td>
363363
<td>Code Coverage</td>
364-
<td>Supports measuring code coverage, including line, branch, or function coverage.</td>
364+
<td>Enables measurement of test coverage, including metrics like line, branch, and function coverage, to assess test effectiveness.</td>
365365
</tr>
366366
<tr>
367367
<td>D205</td>
368368
<td>Accessibility Testing</td>
369-
<td>Supports accessibility testing for standards compliance, such as WCAG.</td>
369+
<td>Supports testing for compliance with accessibility standards (e.g., WCAG) to ensure usability for people with disabilities.</td>
370370
</tr>
371371
<tr>
372372
<td>D301</td>
373-
<td>Security Scanning</td>
374-
<td>Supports security scanning, including SAST and DAST.</td>
373+
<td>Vulnerability Scanning</td>
374+
<td>Scanning source code, containers, or infrastructure for known security vulnerabilities using tools like Snyk, Trivy, or SonarQube security rules.</td>
375375
</tr>
376376
<tr>
377377
<td>D302</td>
378378
<td>License Scanning</td>
379-
<td>Supports license scanning using tools like SPDX, FOSSology, or license-checkers.</td>
379+
<td>Checking open-source dependencies for license compliance and legal risks to avoid unapproved or incompatible usage.</td>
380380
</tr>
381381
<tr>
382382
<td>D401</td>
@@ -406,17 +406,17 @@ <h2 id="criteria-details">Criteria Details</h2>
406406
<tr>
407407
<td>D501</td>
408408
<td>Static Code Analysis</td>
409-
<td>Analyze code for vulnerabilities and bugs without executing it.</td>
409+
<td>Analyzing code without executing it to detect bugs, code smells, or potential security issues.</td>
410410
</tr>
411411
<tr>
412412
<td>D502</td>
413413
<td>Dynamic Code Analysis</td>
414-
<td>Execute code in test environments to find runtime issues.</td>
414+
<td>Analyzing running applications to detect runtime vulnerabilities, memory leaks, or behavioral issues.</td>
415415
</tr>
416416
<tr>
417417
<td>D503</td>
418418
<td>Code Linting</td>
419-
<td>Enforce code style and formatting rules.</td>
419+
<td>Checking code for style, formatting, and consistency rules.</td>
420420
</tr>
421421
<tr>
422422
<td>D601</td>

0 commit comments

Comments
 (0)