Skip to content

Commit

Permalink
PA-14328 syft 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SOOS-GSteen committed Jun 19, 2024
1 parent 0438e2e commit d4f1f49
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 30 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:18-slim as BASE

ARG SYFT_VERSION=v1.0.1
ARG SYFT_VERSION=v1.7.0

RUN apt-get update && apt-get install -y wget && \
wget -qO- https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin ${SYFT_VERSION} && \
Expand Down
56 changes: 31 additions & 25 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "SOOS",
"publisher": "SOOS",
"license": "MIT",
"version": "1.1.8",
"version": "1.2.0",
"main": "dist/index.js",
"scripts": {
"setup:install": "npm install",
Expand Down Expand Up @@ -43,7 +43,7 @@
},
"homepage": "https://github.com/soos-io/soos-csa#readme",
"dependencies": {
"@soos-io/api-client": "0.2.48",
"@soos-io/api-client": "0.3.1",
"argparse": "^2.0.1",
"glob": "^10.3.14",
"tslib": "^2.6.2"
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class SOOSCSAAnalysis {
});

syftProcess.on("close", (code) => {
soosLogger.verboseDebug(`syft: child process exited with code ${code}`);
soosLogger.debug(`syft: child process exited with code ${code}`);
if (code === 0) {
resolve();
} else {
Expand All @@ -230,7 +230,7 @@ class SOOSCSAAnalysis {
soosLogger.setMinLogLevel(args.logLevel);
soosLogger.setVerbose(args.verbose);
soosLogger.info("Configuration read");
soosLogger.verboseDebug(
soosLogger.debug(
JSON.stringify(
obfuscateProperties(args as unknown as Record<string, unknown>, ["apiKey"]),
null,
Expand Down

0 comments on commit d4f1f49

Please sign in to comment.