Skip to content

Commit fd8ea33

Browse files
authored
chore: update cli version to 1.18.0 (#63)
1 parent d9114f7 commit fd8ea33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This action performs analysis on a specific container image and posts the result
1111
|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
1212
| `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/). | |
1313
| `mode` | Mode of operation. Can be "vm" or "iac". | `vm` |
14-
| `cli-scanner-version` | Custom sysdig-cli-scanner version to download. If using iac mode, minimum required version is 1.9.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.13.0` |
14+
| `cli-scanner-version` | Custom sysdig-cli-scanner version to download. If using iac mode, minimum required version is 1.9.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.18.0` |
1515
| `registry-user` | Registry username to authenticate to while pulling the image to scan. | |
1616
| `registry-password` | Registry password to authenticate to while pulling the image to scan. | |
1717
| `stop-on-failed-policy-eval` | Fail the job if the Policy Evaluation is Failed. | |

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
9-
default: "1.13.0"
9+
default: "1.18.0"
1010
required: false
1111
registry-user:
1212
description: Registry username.

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.13.0"
7+
const cliScannerVersion = "1.18.0"
88
const cliScannerOS = getRunOS()
99
const cliScannerArch = getRunArch()
1010
const cliScannerURLBase = "https://download.sysdig.com/scanning/bin/sysdig-cli-scanner";

0 commit comments

Comments
 (0)