Skip to content

Commit d9232fd

Browse files
Merge branch 'main' into issue_2098_documentation
2 parents f6a3bed + e450063 commit d9232fd

10 files changed

Lines changed: 15 additions & 13 deletions

File tree

operator/controllers/execution/scans/job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func checkIfAllJobsCompleted(jobs *batch.JobList) jobCompletionType {
2929
hasCompleted := true
3030

3131
for _, job := range jobs.Items {
32-
if job.Status.Failed > 0 {
32+
if job.Status.Failed >= *job.Spec.BackoffLimit {
3333
return failed
3434
} else if job.Status.Succeeded == 0 {
3535
hasCompleted = false

scanners.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ deploy-without-scanner:
7777
--set="parser.image.repository=docker.io/$(IMG_NS)/$(parser-prefix)-$(name)" \
7878
--set="parser.image.tag=$(IMG_TAG)" \
7979
--set="parser.env[0].name=CRASH_ON_FAILED_VALIDATION" \
80-
--set-string="parser.env[0].value=true"
80+
--set-string="parser.env[0].value=true" \
81+
--set="scanner.backoffLimit=1"
8182

8283
.PHONY: deploy-with-scanner
8384
deploy-with-scanner:
@@ -88,7 +89,8 @@ deploy-with-scanner:
8889
--set="parser.env[0].name=CRASH_ON_FAILED_VALIDATION" \
8990
--set-string="parser.env[0].value=true" \
9091
--set="scanner.image.repository=docker.io/$(IMG_NS)/$(scanner-prefix)-$(name)" \
91-
--set="scanner.image.tag=$(IMG_TAG)"
92+
--set="scanner.image.tag=$(IMG_TAG)" \
93+
--set="scanner.backoffLimit=1"
9294

9395
.PHONY: integration-tests
9496
integration-tests:

scanners/semgrep/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ version: "v3.1.0-alpha1"
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
2424
# It is recommended to use it with quotes.
25-
appVersion: "1.59.1"
25+
appVersion: "1.60.1"
2626
annotations:
2727
versionApi: https://api.github.com/repos/returntocorp/semgrep/releases/latest
2828
supported-platforms: linux/amd64

scanners/semgrep/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Semgrep"
33
category: "scanner"
44
type: "Repository"
55
state: "released"
6-
appVersion: "1.59.1"
6+
appVersion: "1.60.1"
77
usecase: "Static Code Analysis"
88
---
99

scanners/semgrep/docs/README.DockerHub-Parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can find resources to help you get started on our [documentation website](ht
4242

4343
## Supported Tags
4444
- `latest` (represents the latest stable release build)
45-
- tagged releases, e.g. `1.59.1`
45+
- tagged releases, e.g. `1.60.1`
4646

4747
## How to use this image
4848
This `parser` image is intended to work in combination with the corresponding security scanner docker image to parse the `findings` results. For more information details please take a look at the documentation page: https://www.securecodebox.io/docs/scanners/semgrep.

scanners/typo3scan/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: A Helm chart for the Typo3 security scanner that integrates with th
88
type: application
99
# version - gets automatically set to the secureCodeBox release version when the helm charts gets published
1010
version: v3.1.0-alpha1
11-
appVersion: "v1.1.3"
11+
appVersion: "v1.1.4"
1212
kubeVersion: ">=v1.11.0-0"
1313
annotations:
1414
versionApi: https://api.github.com/repos/whoot/Typo3Scan/releases/latest

scanners/typo3scan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Typo3Scan"
33
category: "scanner"
44
type: "CMS"
55
state: "released"
6-
appVersion: "v1.1.3"
6+
appVersion: "v1.1.4"
77
usecase: "Automation of the process of detecting the Typo3 CMS and its installed extensions"
88
---
99

scanners/typo3scan/docs/README.DockerHub-Parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can find resources to help you get started on our [documentation website](ht
4242

4343
## Supported Tags
4444
- `latest` (represents the latest stable release build)
45-
- tagged releases, e.g. `v1.1.3`
45+
- tagged releases, e.g. `v1.1.4`
4646

4747
## How to use this image
4848
This `parser` image is intended to work in combination with the corresponding security scanner docker image to parse the `findings` results. For more information details please take a look at the documentation page: https://www.securecodebox.io/docs/scanners/typo3scan.

scanners/typo3scan/docs/README.DockerHub-Scanner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can find resources to help you get started on our [documentation website](ht
4242

4343
## Supported Tags
4444
- `latest` (represents the latest stable release build)
45-
- tagged releases, e.g. `v1.1.3`
45+
- tagged releases, e.g. `v1.1.4`
4646

4747
## How to use this image
4848
This `scanner` image is intended to work in combination with the corresponding `parser` image to parse the scanner `findings` to generic secureCodeBox results. For more information details please take a look at the [project page][scb-docs] or [documentation page][https://www.securecodebox.io/docs/scanners/typo3scan].

scanners/typo3scan/integration-tests/typo3scan.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ test(
1616
90
1717
);
1818

19-
expect(count).toBe(24);
19+
expect(count).toBe(27);
2020
expect(categories).toMatchInlineSnapshot(`
2121
{
22-
"Vulnerability": 24,
22+
"Vulnerability": 27,
2323
}
2424
`);
2525
expect(severities).toMatchInlineSnapshot(`
2626
{
27-
"high": 24,
27+
"high": 27,
2828
}
2929
`);
3030
},

0 commit comments

Comments
 (0)