Skip to content

Commit

Permalink
Build ce7e7dc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 22, 2024
1 parent ce7e7dc commit 5a5986b
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 9 deletions.
11 changes: 9 additions & 2 deletions dist/nowsecure-convert-sarif/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49238,8 +49238,15 @@ function convertToSnapshot(deputy, githubCorrelator, context) {
// added the TypeScript compiler will emit an error.
}
const purl = encodePurl(ecosystem, component.name, component.version);
manifest.addDirectDependency(new dependency_submission_toolkit_1.Package(purl));
manifests[source] = manifest;
try {
const pkg = new dependency_submission_toolkit_1.Package(purl);
manifest.addDirectDependency(pkg);
manifests[source] = manifest;
}
catch (e) {
// Add some additional context about the PURL that failed to be parsed.
console.warn(`${e.message} (PURL is '${purl}')`);
}
}
const snapshot = new dependency_submission_toolkit_1.Snapshot({
version: nowsecure_version_1.version,
Expand Down
2 changes: 1 addition & 1 deletion dist/nowsecure-convert-sarif/index.js.map

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions dist/nowsecure-create-issues/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77305,8 +77305,15 @@ function convertToSnapshot(deputy, githubCorrelator, context) {
// added the TypeScript compiler will emit an error.
}
const purl = encodePurl(ecosystem, component.name, component.version);
manifest.addDirectDependency(new dependency_submission_toolkit_1.Package(purl));
manifests[source] = manifest;
try {
const pkg = new dependency_submission_toolkit_1.Package(purl);
manifest.addDirectDependency(pkg);
manifests[source] = manifest;
}
catch (e) {
// Add some additional context about the PURL that failed to be parsed.
console.warn(`${e.message} (PURL is '${purl}')`);
}
}
const snapshot = new dependency_submission_toolkit_1.Snapshot({
version: nowsecure_version_1.version,
Expand Down
2 changes: 1 addition & 1 deletion dist/nowsecure-create-issues/index.js.map

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions dist/nowsecure-upload-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49023,8 +49023,15 @@ function convertToSnapshot(deputy, githubCorrelator, context) {
// added the TypeScript compiler will emit an error.
}
const purl = encodePurl(ecosystem, component.name, component.version);
manifest.addDirectDependency(new dependency_submission_toolkit_1.Package(purl));
manifests[source] = manifest;
try {
const pkg = new dependency_submission_toolkit_1.Package(purl);
manifest.addDirectDependency(pkg);
manifests[source] = manifest;
}
catch (e) {
// Add some additional context about the PURL that failed to be parsed.
console.warn(`${e.message} (PURL is '${purl}')`);
}
}
const snapshot = new dependency_submission_toolkit_1.Snapshot({
version: nowsecure_version_1.version,
Expand Down
2 changes: 1 addition & 1 deletion dist/nowsecure-upload-app/index.js.map

Large diffs are not rendered by default.

0 comments on commit 5a5986b

Please sign in to comment.