Skip to content

Commit

Permalink
Build 87e58a4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 2, 2023
1 parent 87e58a4 commit 12419ab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
7 changes: 5 additions & 2 deletions dist/nowsecure-convert-sarif/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39604,6 +39604,9 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.getFindingsTable = exports.getDependenciesTable = exports.githubWriteJobSummary = exports.githubJobSummaryShort = exports.githubJobSummaryLong = exports.githubJobSummary = void 0;
const core = __importStar(__nccwpck_require__(2186));
const nowsecure_issues_1 = __nccwpck_require__(783);
const LOGO_URL = "https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png";
const LOGO_SIZE = { width: "222", height: "40" };
const LOGO_ALT = "NowSecure Logo";
function githubJobSummary(which, platform, assessment, findingToIssueMap) {
switch (which) {
case "short":
Expand All @@ -39617,7 +39620,7 @@ function githubJobSummaryLong(platform, assessment, findingToIssueMap) {
const findingsTable = getFindingsTable(platform, assessment, findingToIssueMap);
const dependenciesTable = getDependenciesTable(assessment);
return core.summary
.addImage("https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png", "NowSecure Logo", { width: "222", height: "40" })
.addImage(LOGO_URL, LOGO_ALT, LOGO_SIZE)
.addHeading("Security Test Results")
.addTable(findingsTable)
.addSeparator()
Expand Down Expand Up @@ -39664,7 +39667,7 @@ function githubJobSummaryShort(platform, assessment, findingToIssueMap) {
.map((finding) => riskLine(platform, assessment, finding, findingToIssueMap))
.join("<br>");
return core.summary
.addImage("https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png", "NowSecure Logo")
.addImage(LOGO_URL, LOGO_ALT, LOGO_SIZE)
.addHeading("Security Test Results")
.addTable([testResultHeader, ...results])
.addDetails("Risks", formatDetail(findingsGroupedBy.fail))
Expand Down
2 changes: 1 addition & 1 deletion dist/nowsecure-convert-sarif/index.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions dist/nowsecure-create-issues/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46795,6 +46795,9 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.getFindingsTable = exports.getDependenciesTable = exports.githubWriteJobSummary = exports.githubJobSummaryShort = exports.githubJobSummaryLong = exports.githubJobSummary = void 0;
const core = __importStar(__nccwpck_require__(2186));
const nowsecure_issues_1 = __nccwpck_require__(783);
const LOGO_URL = "https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png";
const LOGO_SIZE = { width: "222", height: "40" };
const LOGO_ALT = "NowSecure Logo";
function githubJobSummary(which, platform, assessment, findingToIssueMap) {
switch (which) {
case "short":
Expand All @@ -46808,7 +46811,7 @@ function githubJobSummaryLong(platform, assessment, findingToIssueMap) {
const findingsTable = getFindingsTable(platform, assessment, findingToIssueMap);
const dependenciesTable = getDependenciesTable(assessment);
return core.summary
.addImage("https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png", "NowSecure Logo", { width: "222", height: "40" })
.addImage(LOGO_URL, LOGO_ALT, LOGO_SIZE)
.addHeading("Security Test Results")
.addTable(findingsTable)
.addSeparator()
Expand Down Expand Up @@ -46855,7 +46858,7 @@ function githubJobSummaryShort(platform, assessment, findingToIssueMap) {
.map((finding) => riskLine(platform, assessment, finding, findingToIssueMap))
.join("<br>");
return core.summary
.addImage("https://www.nowsecure.com/wp-content/uploads/2022/03/Logo-Nowsecure.png", "NowSecure Logo")
.addImage(LOGO_URL, LOGO_ALT, LOGO_SIZE)
.addHeading("Security Test Results")
.addTable([testResultHeader, ...results])
.addDetails("Risks", formatDetail(findingsGroupedBy.fail))
Expand Down
2 changes: 1 addition & 1 deletion dist/nowsecure-create-issues/index.js.map

Large diffs are not rendered by default.

0 comments on commit 12419ab

Please sign in to comment.