From 0e129e113c878bfe7c1abf6c6d94b180cbf71086 Mon Sep 17 00:00:00 2001 From: Chad Bentz <1760475+felickz@users.noreply.github.com> Date: Fri, 27 Feb 2026 22:30:03 +0000 Subject: [PATCH] Prettier - Refactor summary table rendering for improved readability --- src/summary.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/summary.ts b/src/summary.ts index bbcfc48..89d3a64 100644 --- a/src/summary.ts +++ b/src/summary.ts @@ -479,10 +479,9 @@ export async function addChangeVulnerabilitiesToSummary( if (showPatchedVersions) { headerRow.push({data: 'Patched Version', header: true}) } - core.summary.addHeading(`${manifest}`, 4).addTable([ - headerRow, - ...rows - ]) + core.summary + .addHeading(`${manifest}`, 4) + .addTable([headerRow, ...rows]) } if (severity !== 'low') {