Skip to content

Commit

Permalink
package update
Browse files Browse the repository at this point in the history
  • Loading branch information
SOOS-GSteen committed Dec 18, 2023
1 parent 59dcccc commit 2f51aa6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soos-io/soos-sast",
"version": "0.1.9",
"version": "0.1.10",
"description": "SOOS Static Application Security Testing (SAST) scanning support.",
"main": "bin/index.js",
"scripts": {
Expand Down
13 changes: 1 addition & 12 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,11 @@
import {
IntegrationName,
IntegrationType,
LogLevel,
OnFailure,
ScanStatus,
ScanType,
soosLogger,
} from "@soos-io/api-client";
import {
obfuscateProperties,
ensureNonEmptyValue,
ensureEnumValue,
getAnalysisExitCode,
} from "@soos-io/api-client/dist/utilities";
import { obfuscateProperties, getAnalysisExitCode } from "@soos-io/api-client/dist/utilities";
import { exit } from "process";
import { version } from "../package.json";
import AnalysisService from "@soos-io/api-client/dist/services/AnalysisService";
Expand Down Expand Up @@ -89,10 +82,6 @@ class SOOSSASTAnalysis {
throw new Error("No SAST files found.");
}

soosLogger.info("Starting SOOS SAST Analysis");
soosLogger.info(`Creating scan for project '${this.args.projectName}'...`);
soosLogger.info(`Branch Name: ${this.args.branchName}`);

const result = await soosAnalysisService.setupScan({
clientId: this.args.clientId,
projectName: this.args.projectName,
Expand Down

0 comments on commit 2f51aa6

Please sign in to comment.