Skip to content

Commit f82dfca

Browse files
authored
chore(deps): update sysdig-cli-scanner to v1.22.6 (#87)
1 parent fd0fc8c commit f82dfca

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This action performs analysis on a specific container image and posts the result
1010
|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
1111
| `cli-scanner-url` | URL to `sysdig-cli-scanner` binary download. The action will detect the runner OS and architecture. For more info about the Sysdig CLI Scanner download visit [the official documentation](https://docs.sysdig.com/en/docs/installation/sysdig-secure/install-vulnerability-cli-scanner/). | |
1212
| `mode` | Mode of operation. Can be "vm" or "iac". | `vm` |
13-
| `cli-scanner-version` | Custom sysdig-cli-scanner version to download. Minimum required version is 1.18.0. Please note that for VM mode the Action has only been tested with the current default version and it is not guaranteed that it will work as expected with other versions. | `1.22.5` |
13+
| `cli-scanner-version` | Custom sysdig-cli-scanner version to download. Minimum required version is 1.18.0. Please note that for VM mode the Action has only been tested with the current default version and it is not guaranteed that it will work as expected with other versions. | `1.22.6` |
1414
| `registry-user` | Registry username to authenticate to while pulling the image to scan. | |
1515
| `registry-password` | Registry password to authenticate to while pulling the image to scan. | |
1616
| `stop-on-failed-policy-eval` | Fail the job if the Policy Evaluation is Failed. | |
@@ -128,7 +128,7 @@ The `if: success() || failure()` option makes sure the SARIF report is uploaded
128128
uses: sysdiglabs/scan-action@v6
129129
with:
130130
sysdig-secure-token: ${{ secrets.SYSDIG_SECURE_TOKEN }}
131-
cli-scanner-version: 1.22.5
131+
cli-scanner-version: 1.22.6
132132
mode: iac
133133
iac-scan-path: ./terraform
134134
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
required: false
77
cli-scanner-version:
88
description: Custom sysdig-cli-scanner version to download. Oldest supported version is 1.18.0.
9-
default: "1.22.5"
9+
default: "1.22.6"
1010
required: false
1111
registry-user:
1212
description: Registry username.

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "secure-inline-scan-action",
3-
"version": "6.1.2",
3+
"version": "6.1.3",
44
"description": "This actions performs image analysis on locally built container image and posts the result of the analysis to Sysdig Secure.",
55
"main": "index.js",
66
"scripts": {

src/scanner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import os from 'os';
44
import process from 'process';
55
const performance = require('perf_hooks').performance;
66

7-
const cliScannerVersion = "1.22.5"
7+
const cliScannerVersion = "1.22.6"
88
const cliScannerOS = getRunOS()
99
const cliScannerArch = getRunArch()
1010
const cliScannerURLBase = "https://download.sysdig.com/scanning/bin/sysdig-cli-scanner";

tests/fixtures/sarif-test.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"name": "sysdig-cli-scanner",
99
"fullName": "Sysdig Vulnerability CLI Scanner",
1010
"informationUri": "https://docs.sysdig.com/en/docs/installation/sysdig-secure/install-vulnerability-cli-scanner",
11-
"version": "6.1.2",
12-
"semanticVersion": "6.1.2",
13-
"dottedQuadFileVersion": "6.1.2.0",
11+
"version": "6.1.3",
12+
"semanticVersion": "6.1.3",
13+
"dottedQuadFileVersion": "6.1.3.0",
1414
"rules": [
1515
{
1616
"id": "CVE-2023-48795",

tests/sarif.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ describe("input parsing", () => {
3030
name: "sysdig-cli-scanner",
3131
fullName: "Sysdig Vulnerability CLI Scanner",
3232
informationUri: "https://docs.sysdig.com/en/docs/installation/sysdig-secure/install-vulnerability-cli-scanner",
33-
version: "6.1.2",
34-
semanticVersion: "6.1.2",
35-
dottedQuadFileVersion: "6.1.2.0",
33+
"version": "6.1.3",
34+
"semanticVersion": "6.1.3",
35+
"dottedQuadFileVersion": "6.1.3.0",
3636
rules: []
3737
}
3838
},

0 commit comments

Comments
 (0)