Skip to content

Update checkmarx-ast-cli binaries with 2.2.6 #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checkmarx-ast-cli.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.5
2.2.6
2 changes: 1 addition & 1 deletion src/main/osinstaller/CxInstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

export class CxInstaller {
private readonly platform: string;
private cliVersion = '2.2.5';
private cliVersion = '2.2.6';
private readonly resourceDirPath: string;
private static installSemaphore = new Semaphore(1); // Semaphore with 1 slot

Expand Down Expand Up @@ -44,7 +44,7 @@


async downloadIfNotInstalledCLI(): Promise<void> {
const [_, release] = await CxInstaller.installSemaphore.acquire();

Check warning on line 47 in src/main/osinstaller/CxInstaller.ts

View workflow job for this annotation

GitHub Actions / integration-tests

'_' is assigned a value but never used
try {
await fs.promises.mkdir(this.resourceDirPath, { recursive: true });

Expand Down
Loading