Feat: Add Patched Version to Vulnerabilities summary#1045
Feat: Add Patched Version to Vulnerabilities summary#1045ahpook merged 8 commits intoactions:mainfrom
Patched Version to Vulnerabilities summary#1045Conversation
…support (#5) * Initial plan * Initial plan for adding patched versions to vulnerability summary Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Add patched version column to vulnerability summary table Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Optimize API calls to use Set and Promise.all for better performance Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Remove type assertions and optimize ecosystem lookups with normalization Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Extract patch version type checking into helper function for clarity Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Support multiple version ranges per package in advisory lookup Handle scenarios where the same package has multiple vulnerable version ranges with different patched versions (e.g., GHSA-gwq6-fmvp-qp68 with .NET packages). - Store all vulnerability entries with version ranges, not just one per ecosystem - Implement version range matching to select correct patch version - Match package by ecosystem, name, AND version range - Add comprehensive test for multi-range scenario Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix first_patched_version extraction to handle string format The GitHub Advisory API returns first_patched_version as a simple string (e.g., "112.0.0"), not an object with an identifier field. Updated extractPatchVersionId to handle string format primarily while maintaining backward compatibility with object format. - Fixed extractPatchVersionId to check for string first - Updated test mocks to match actual API response format - Added specific test for RestSharp GHSA-4rr6-2v9v-wcpc case - Verified with actual API responses from multiple advisories Fixes issue where patched versions were showing as "N/A" instead of the actual version number. Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Rebuild dist with patched version fix The previous fix to extractPatchVersionId wasn't deployed because the dist/ folder (compiled JavaScript) wasn't rebuilt. This commit rebuilds and packages the action with npm run build && npm run package to include the fix. Changes in dist/: - Updated extractPatchVersionId to handle string format first - Includes all async vulnerability summary logic with API calls - Properly extracts patched versions from GitHub Advisory API This should resolve the issue where patched versions showed as "N/A" in actual GitHub Actions runs. Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Add comprehensive debug logging for patch version lookup Added detailed debug logging to help troubleshoot patch version issues: - Log when fetching advisory data from API - Log number of vulnerability entries found - Log each patch info entry added with details - Log when no patch version is found - Log during lookup phase with package details - Log when patch version is found vs not found - Log available entries when no match is found This will make it much easier to diagnose issues in GitHub Actions debug mode. Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Adds “Patched Version” to the Vulnerabilities summary by looking up advisory patch data from the GitHub Advisories API and selecting the correct patched version for each vulnerable package/version (including cases with multiple vulnerable ranges).
Changes:
- Fetch advisory vulnerability entries in parallel and map them to a per-advisory patch lookup.
- Add “Patched Version” as a new column in the vulnerabilities summary table.
- Add Jest tests for patched-version rendering and multi-range advisory scenarios.
Reviewed changes
Copilot reviewed 4 out of 7 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| src/summary.ts | Fetches advisory data, computes patched version per vulnerability, and renders the new “Patched Version” column. |
| src/main.ts | Awaits the now-async vulnerabilities summary renderer. |
| scripts/create_summary.ts | Awaits the now-async vulnerabilities summary renderer in the script entrypoint. |
| tests/summary.test.ts | Mocks the advisory API and adds tests for patched-version behavior (including multi-range and a real-world NuGet example). |
Comments suppressed due to low confidence (1)
src/summary.ts:272
- Filtering
vulnerableChangesfor every manifest makes this O(M*N). Since this PR already touches related code and imports helpers from./utils, it would be more efficient to pre-group once (e.g., build aMap<manifest, Changes>up front) and iterate the grouped results.
for (const manifest of manifests) {
for (const change of vulnerableChanges.filter(
pkg => pkg.manifest === manifest
)) {
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…ching, error logging, and configurable fail behavior (#7) * Initial plan * Implement PR review comment fixes: semver library, error handling, case-insensitive matching, and rows scoping Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix formatting and rebuild dist folder Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix fail-closed logic and remove redundant @types/semver Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Apply review feedback: fix empty range handling, add trimming, implement range check caching Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Apply review feedback: align fail-closed behavior for empty version, fix TypeScript typing, normalize cache keys Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix linter errors, optimize cache keys, and improve trimming logic Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Add fail-open option for patch selection and optimize with preTrimmed flag Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Enforce fail-closed with explicit validation, fix debug messages, normalize cache keys Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix unreachable ternary in debug message and eliminate duplicate trim operation Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Normalize eco comparison and add preNormalized option to avoid duplicate range conversion Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Remove unnecessary cache, fix function signature, and correct semver comment Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Make includePrerelease conditional based on version type to preserve range semantics Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Improve debug message to report both invalid version and range when applicable Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Convert to JSDoc, add explicit type annotation, and remove redundant initializer Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 5 out of 8 changed files in this pull request and generated 11 comments.
Comments suppressed due to low confidence (2)
src/summary.ts:272
rowsis allocated once outside thefor (const manifest of manifests)loop and never cleared, so the table for the 2nd (and later) manifests will include rows from earlier manifests. Moveconst rows: SummaryTableRow[] = []inside the manifest loop (or reset it at the start of each manifest) so each manifest table only contains its own rows.
for (const manifest of manifests) {
for (const change of vulnerableChanges.filter(
pkg => pkg.manifest === manifest
)) {
src/summary.ts:339
rowsis allocated once outside thefor (const manifest of manifests)loop and never cleared, so the table for the 2nd (and later) manifests will include rows from earlier manifests. Moveconst rows: SummaryTableRow[] = []inside the manifest loop (or reset it at the start of each manifest) so each manifest table only contains its own rows.
core.summary.addHeading(`<em>${manifest}</em>`, 4).addTable([
[
{data: 'Name', header: true},
{data: 'Version', header: true},
{data: 'Vulnerability', header: true},
{data: 'Severity', header: true},
{data: 'Patched Version', header: true}
],
...rows
])
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 5 out of 8 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…ging improvements, and test coverage (#8) * Initial plan * Implement PR review comments: concurrency limiting, semver coerce, improved logging, test fixes Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Fix promise pool race condition and remove .then() usage Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Add tests for semver coercion and promise pool concurrency, simplify Map to Set Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 5 out of 8 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…implified promisePool (#9) * Initial plan * Apply PR review comments: deterministic delays, cached normalization, simplified promisePool Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Improve comment clarity for ecoLower field Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
Vulnerabilities summaryPatched Version to Vulnerabilities summary
|
Nice addition @felickz - this looks very thorough and i appreciate all the test coverage. I think you need to drop the |
|
Re-ping on this @felickz - would love to get this in, could you please drop the |
Syncs fork with upstream, resolving conflicts in package.json (keeping semver + upgrading spdx-expression-parse to ^4.0.0), regenerating package-lock.json and dist/ folder. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…y handling - Introduced 'show-patched-versions' input in action.yml to control visibility of patched versions in vulnerability summaries. - Updated default configuration and related functions to handle the new option. - Enhanced tests to verify behavior with and without the patched version column.
ahpook
left a comment
There was a problem hiding this comment.
Nice @felickz , thanks for adding this behind a config option. I think that reduces the risk of merging and makes this a very clean addition. We can look at making show_patched_versions: true the default on a future major-version release.
… feature from PR #1045 Co-authored-by: ahpook <56753+ahpook@users.noreply.github.com>
ahpook
left a comment
There was a problem hiding this comment.
Great, thanks for bearing with all the back and forth on this!
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.64` | `1.0.70` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.32.4` | `4.32.6` | | [dorny/test-reporter](https://github.com/dorny/test-reporter) | `2.5.0` | `2.6.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.2.0` | `6.3.0` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4.8.3` | `4.9.0` | Updates `anthropics/claude-code-action` from 1.0.64 to 1.0.70 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.70 > ------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.70> > > v1.0.69 > ------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.69> > > v1.0.68 > ------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.68> > > v1.0.67 > ------- > > What's Changed > -------------- > > * Improve gh.sh wrapper: stricter validation and better error messages by [`@OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#996](https://github.com/anthropics/claude-code-action/pull/996) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.67> > > v1.0.66 > ------- > > What's Changed > -------------- > > * Only expose permission\_denials count in sanitized output by [`@ddworken`](https://github.com/ddworken) in [anthropics/claude-code-action#993](https://github.com/anthropics/claude-code-action/pull/993) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.66> > > v1.0.65 > ------- > > What's Changed > -------------- > > * Change the default `display_report` option to false to restrict exposed data by [`@ddworken`](https://github.com/ddworken) in [anthropics/claude-code-action#992](https://github.com/anthropics/claude-code-action/pull/992) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.65> Commits * [`26ec041`](anthropics/claude-code-action@26ec041) chore: bump Claude Code to 2.1.70 and Agent SDK to 0.2.70 * [`1fc90f3`](anthropics/claude-code-action@1fc90f3) chore: bump Claude Code to 2.1.69 and Agent SDK to 0.2.69 * [`e763fe7`](anthropics/claude-code-action@e763fe7) chore: bump Claude Code to 2.1.68 and Agent SDK to 0.2.68 * [`5f8e5bf`](anthropics/claude-code-action@5f8e5bf) chore: bump Claude Code to 2.1.66 and Agent SDK to 0.2.66 * [`7336720`](anthropics/claude-code-action@7336720) Improve gh.sh wrapper: stricter validation and better error messages ([#996](https://github.com/anthropics/claude-code-action/issues/996)) * [`64c7a0e`](anthropics/claude-code-action@64c7a0e) Only expose permission\_denials count in sanitized output ([#993](https://github.com/anthropics/claude-code-action/issues/993)) * [`220272d`](anthropics/claude-code-action@220272d) Change the default `display_report` option to false to restrict exposed data ... * See full diff in [compare view](anthropics/claude-code-action@ba7fa4b...26ec041) Updates `github/codeql-action` from 4.32.4 to 4.32.6 Release notes *Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).* > v4.32.6 > ------- > > * Update default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3). [#3548](https://github.com/github/codeql-action/pull/3548) > > v4.32.5 > ------- > > * Repositories owned by an organization can now set up the `github-codeql-disable-overlay` custom repository property to disable [improved incremental analysis for CodeQL](https://github.com/github/roadmap/issues/1158). First, create a custom repository property with the name `github-codeql-disable-overlay` and the type "True/false" in the organization's settings. Then in the repository's settings, set this property to `true` to disable improved incremental analysis. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature is not yet available on GitHub Enterprise Server. [#3507](https://github.com/github/codeql-action/pull/3507) > * Added an experimental change so that when [improved incremental analysis](https://github.com/github/roadmap/issues/1158) fails on a runner — potentially due to insufficient disk space — the failure is recorded in the Actions cache so that subsequent runs will automatically skip improved incremental analysis until something changes (e.g. a larger runner is provisioned or a new CodeQL version is released). We expect to roll this change out to everyone in March. [#3487](https://github.com/github/codeql-action/pull/3487) > * The minimum memory check for improved incremental analysis is now skipped for CodeQL 2.24.3 and later, which has reduced peak RAM usage. [#3515](https://github.com/github/codeql-action/pull/3515) > * Reduced log levels for best-effort private package registry connection check failures to reduce noise from workflow annotations. [#3516](https://github.com/github/codeql-action/pull/3516) > * Added an experimental change which lowers the minimum disk space requirement for [improved incremental analysis](https://github.com/github/roadmap/issues/1158), enabling it to run on standard GitHub Actions runners. We expect to roll this change out to everyone in March. [#3498](https://github.com/github/codeql-action/pull/3498) > * Added an experimental change which allows the `start-proxy` action to resolve the CodeQL CLI version from feature flags instead of using the linked CLI bundle version. We expect to roll this change out to everyone in March. [#3512](https://github.com/github/codeql-action/pull/3512) > * The previously experimental changes from versions 4.32.3, 4.32.4, 3.32.3 and 3.32.4 are now enabled by default. [#3503](https://github.com/github/codeql-action/pull/3503), [#3504](https://github.com/github/codeql-action/pull/3504) Changelog *Sourced from [github/codeql-action's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.32.6 - 05 Mar 2026 > -------------------- > > * Update default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3). [#3548](https://github.com/github/codeql-action/pull/3548) > > 4.32.5 - 02 Mar 2026 > -------------------- > > * Repositories owned by an organization can now set up the `github-codeql-disable-overlay` custom repository property to disable [improved incremental analysis for CodeQL](https://github.com/github/roadmap/issues/1158). First, create a custom repository property with the name `github-codeql-disable-overlay` and the type "True/false" in the organization's settings. Then in the repository's settings, set this property to `true` to disable improved incremental analysis. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature is not yet available on GitHub Enterprise Server. [#3507](https://github.com/github/codeql-action/pull/3507) > * Added an experimental change so that when [improved incremental analysis](https://github.com/github/roadmap/issues/1158) fails on a runner — potentially due to insufficient disk space — the failure is recorded in the Actions cache so that subsequent runs will automatically skip improved incremental analysis until something changes (e.g. a larger runner is provisioned or a new CodeQL version is released). We expect to roll this change out to everyone in March. [#3487](https://github.com/github/codeql-action/pull/3487) > * The minimum memory check for improved incremental analysis is now skipped for CodeQL 2.24.3 and later, which has reduced peak RAM usage. [#3515](https://github.com/github/codeql-action/pull/3515) > * Reduced log levels for best-effort private package registry connection check failures to reduce noise from workflow annotations. [#3516](https://github.com/github/codeql-action/pull/3516) > * Added an experimental change which lowers the minimum disk space requirement for [improved incremental analysis](https://github.com/github/roadmap/issues/1158), enabling it to run on standard GitHub Actions runners. We expect to roll this change out to everyone in March. [#3498](https://github.com/github/codeql-action/pull/3498) > * Added an experimental change which allows the `start-proxy` action to resolve the CodeQL CLI version from feature flags instead of using the linked CLI bundle version. We expect to roll this change out to everyone in March. [#3512](https://github.com/github/codeql-action/pull/3512) > * The previously experimental changes from versions 4.32.3, 4.32.4, 3.32.3 and 3.32.4 are now enabled by default. [#3503](https://github.com/github/codeql-action/pull/3503), [#3504](https://github.com/github/codeql-action/pull/3504) > > 4.32.4 - 20 Feb 2026 > -------------------- > > * Update default CodeQL bundle version to [2.24.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.2). [#3493](https://github.com/github/codeql-action/pull/3493) > * Added an experimental change which improves how certificates are generated for the authentication proxy that is used by the CodeQL Action in Default Setup when [private package registries are configured](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries). This is expected to generate more widely compatible certificates and should have no impact on analyses which are working correctly already. We expect to roll this change out to everyone in February. [#3473](https://github.com/github/codeql-action/pull/3473) > * When the CodeQL Action is run [with debugging enabled in Default Setup](https://docs.github.com/en/code-security/how-tos/scan-code-for-vulnerabilities/troubleshooting/troubleshooting-analysis-errors/logs-not-detailed-enough#creating-codeql-debugging-artifacts-for-codeql-default-setup) and [private package registries are configured](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries), the "Setup proxy for registries" step will output additional diagnostic information that can be used for troubleshooting. [#3486](https://github.com/github/codeql-action/pull/3486) > * Added a setting which allows the CodeQL Action to enable network debugging for Java programs. This will help GitHub staff support customers with troubleshooting issues in GitHub-managed CodeQL workflows, such as Default Setup. This setting can only be enabled by GitHub staff. [#3485](https://github.com/github/codeql-action/pull/3485) > * Added a setting which enables GitHub-managed workflows, such as Default Setup, to use a [nightly CodeQL CLI release](https://github.com/dsp-testing/codeql-cli-nightlies) instead of the latest, stable release that is used by default. This will help GitHub staff support customers whose analyses for a given repository or organization require early access to a change in an upcoming CodeQL CLI release. This setting can only be enabled by GitHub staff. [#3484](https://github.com/github/codeql-action/pull/3484) > > 4.32.3 - 13 Feb 2026 > -------------------- > > * Added experimental support for testing connections to [private package registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries). This feature is not currently enabled for any analysis. In the future, it may be enabled by default for Default Setup. [#3466](https://github.com/github/codeql-action/pull/3466) > > 4.32.2 - 05 Feb 2026 > -------------------- > > * Update default CodeQL bundle version to [2.24.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.1). [#3460](https://github.com/github/codeql-action/pull/3460) > > 4.32.1 - 02 Feb 2026 > -------------------- > > * A warning is now shown in Default Setup workflow logs if a [private package registry is configured](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) using a GitHub Personal Access Token (PAT), but no username is configured. [#3422](https://github.com/github/codeql-action/pull/3422) > * Fixed a bug which caused the CodeQL Action to fail when repository properties cannot successfully be retrieved. [#3421](https://github.com/github/codeql-action/pull/3421) > > 4.32.0 - 26 Jan 2026 > -------------------- > > * Update default CodeQL bundle version to [2.24.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.0). [#3425](https://github.com/github/codeql-action/pull/3425) > > 4.31.11 - 23 Jan 2026 > --------------------- > > * When running a Default Setup workflow with [Actions debugging enabled](https://docs.github.com/en/actions/how-tos/monitor-workflows/enable-debug-logging), the CodeQL Action will now use more unique names when uploading logs from the Dependabot authentication proxy as workflow artifacts. This ensures that the artifact names do not clash between multiple jobs in a build matrix. [#3409](https://github.com/github/codeql-action/pull/3409) ... (truncated) Commits * [`0d579ff`](github/codeql-action@0d579ff) Merge pull request [#3551](https://github.com/github/codeql-action/issues/3551) from github/update-v4.32.6-72d2d850d * [`d4c6be7`](github/codeql-action@d4c6be7) Update changelog for v4.32.6 * [`72d2d85`](github/codeql-action@72d2d85) Merge pull request [#3548](https://github.com/github/codeql-action/issues/3548) from github/update-bundle/codeql-bundle-v2.24.3 * [`23f983c`](github/codeql-action@23f983c) Merge pull request [#3544](https://github.com/github/codeql-action/issues/3544) from github/dependabot/github\_actions/dot-github/wor... * [`832e97c`](github/codeql-action@832e97c) Merge pull request [#3545](https://github.com/github/codeql-action/issues/3545) from github/dependabot/github\_actions/dot-github/wor... * [`5ef38c0`](github/codeql-action@5ef38c0) Merge pull request [#3546](https://github.com/github/codeql-action/issues/3546) from github/dependabot/npm\_and\_yarn/tar-7.5.10 * [`80c9cda`](github/codeql-action@80c9cda) Add changelog note * [`f2669dd`](github/codeql-action@f2669dd) Update default bundle to codeql-bundle-v2.24.3 * [`bd03c44`](github/codeql-action@bd03c44) Merge branch 'main' into dependabot/github\_actions/dot-github/workflows/actio... * [`102d762`](github/codeql-action@102d762) Bump tar from 7.5.7 to 7.5.10 * Additional commits viewable in [compare view](github/codeql-action@89a39a4...0d579ff) Updates `dorny/test-reporter` from 2.5.0 to 2.6.0 Release notes *Sourced from [dorny/test-reporter's releases](https://github.com/dorny/test-reporter/releases).* > v2.6.0 > ------ > > We updated all dependency packages to latest versions to fix reported security vulnerabilities. > > What's Changed > -------------- > > * Fix: For `workflow_run` events, resolve the commit of the check run from related pull request head commits first (matching `workflow_run.head_branch`, then first PR), and fall back to `workflow_run.head_sha` for non-PR runs [dorny/test-reporter#673](https://github.com/dorny/test-reporter/pull/673) > * Change: The `test-reporter` action will listed all artifacts associated with the build run [dorny/test-reporter#693](https://github.com/dorny/test-reporter/pull/693) > * Maintenance: Upgrade to ESLint v9 [dorny/test-reporter#629](https://github.com/dorny/test-reporter/pull/629) > > New Contributors > ---------------- > > * [`@azchohfi`](https://github.com/azchohfi) made their first contribution in [dorny/test-reporter#673](https://github.com/dorny/test-reporter/pull/673) > > **Full Changelog**: <dorny/test-reporter@v2.5.0...v2.6.0> Changelog *Sourced from [dorny/test-reporter's changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md).* > Changelog > ========= > > 2.6.0 > ----- > > * Fix: For `workflow_run` events, resolve the commit of the check run from related pull request head commits first (matching `workflow_run.head_branch`, then first PR), and fall back to `workflow_run.head_sha` for non-PR runs [dorny/test-reporter#673](https://github.com/dorny/test-reporter/pull/673) > * Change: The `test-reporter` action will listed all artifacts associated with the build run [dorny/test-reporter#693](https://github.com/dorny/test-reporter/pull/693) > * Maintenance: Upgrade to ESLint v9 [dorny/test-reporter#629](https://github.com/dorny/test-reporter/pull/629) > > 2.5.0 > ----- > > * Feature: Add Nette Tester support with `tester-junit` reporter [dorny/test-reporter#707](https://github.com/dorny/test-reporter/pull/707) > * Maintenance: Bump actions/upload-artifact from 5 to 6 [dorny/test-reporter#695](https://github.com/dorny/test-reporter/pull/695) > > 2.4.0 > ----- > > * Feature: Add PHPUnit support with JUnit XML dialect parser [dorny/test-reporter#422](https://github.com/dorny/test-reporter/pull/422) > * Feature: Add JUnit XML sample files and tests for validation [dorny/test-reporter#701](https://github.com/dorny/test-reporter/pull/701) > * Fix: Refactor deprecated `String.substr()` function to use `String.substring()` [dorny/test-reporter#704](https://github.com/dorny/test-reporter/pull/704) > > 2.3.0 > ----- > > * Feature: Add Python support with `python-xunit` reporter (pytest) [dorny/test-reporter#643](https://github.com/dorny/test-reporter/pull/643) > * Feature: Add pytest traceback parsing and `directory-mapping` option [dorny/test-reporter#238](https://github.com/dorny/test-reporter/pull/238) > * Performance: Update sax.js to fix large XML file parsing [dorny/test-reporter#681](https://github.com/dorny/test-reporter/pull/681) > * Documentation: Complete documentation for all supported reporters [dorny/test-reporter#691](https://github.com/dorny/test-reporter/pull/691) > * Security: Bump js-yaml and mocha in /reports/mocha (fixes prototype pollution) [dorny/test-reporter#682](https://github.com/dorny/test-reporter/pull/682) > > 2.2.0 > ----- > > * Feature: Add collapsed option to control report summary visibility [dorny/test-reporter#664](https://github.com/dorny/test-reporter/pull/664) > * Fix badge encoding for values including underscore and hyphens [dorny/test-reporter#672](https://github.com/dorny/test-reporter/pull/672) > * Fix missing `report-title` attribute in action definition [dorny/test-reporter#637](https://github.com/dorny/test-reporter/pull/637) > * Refactor variable names to fix shadowing issues [dorny/test-reporter#630](https://github.com/dorny/test-reporter/pull/630) > > 2.1.1 > ----- > > * Fix error when a TestMethod element does not have a className attribute in a trx file [dorny/test-reporter#623](https://github.com/dorny/test-reporter/pull/623) > * Add stack trace from trx to summary [dorny/test-reporter#615](https://github.com/dorny/test-reporter/pull/615) > * List only failed tests [dorny/test-reporter#606](https://github.com/dorny/test-reporter/pull/606) > * Add type definitions to `github-utils.ts` [dorny/test-reporter#604](https://github.com/dorny/test-reporter/pull/604) > * Avoid split on undefined [dorny/test-reporter#258](https://github.com/dorny/test-reporter/pull/258) > * Return links to summary report [dorny/test-reporter#588](https://github.com/dorny/test-reporter/pull/588) > * Add step summary short summary [dorny/test-reporter#589](https://github.com/dorny/test-reporter/pull/589) > * Fix for empty TRX TestDefinitions [dorny/test-reporter#582](https://github.com/dorny/test-reporter/pull/582) > * Increase step summary limit to 1MiB [dorny/test-reporter#581](https://github.com/dorny/test-reporter/pull/581) > * Fix input description for list options [dorny/test-reporter#572](https://github.com/dorny/test-reporter/pull/572) > > 2.1.0 > ----- > > * Feature: Add summary title [dorny/test-reporter#568](https://github.com/dorny/test-reporter/pull/568) > * Feature: Add Golang test parser [dorny/test-reporter#571](https://github.com/dorny/test-reporter/pull/571) > * Increase step summary limit to 1MiB [dorny/test-reporter#581](https://github.com/dorny/test-reporter/pull/581) > * Fix for empty TRX TestDefinitions [dorny/test-reporter#582](https://github.com/dorny/test-reporter/pull/582) > * Fix input description for list options [dorny/test-reporter#572](https://github.com/dorny/test-reporter/pull/572) > * Update npm packages [dorny/test-reporter#583](https://github.com/dorny/test-reporter/pull/583) > > 2.0.0 > ----- ... (truncated) Commits * [`3d76b34`](dorny/test-reporter@3d76b34) Merge pull request [#730](https://github.com/dorny/test-reporter/issues/730) from dorny/feature/166-list-all-artifacts * [`a71adbe`](dorny/test-reporter@a71adbe) Update changelog * [`34ed02c`](dorny/test-reporter@34ed02c) Merge pull request [#728](https://github.com/dorny/test-reporter/issues/728) from dorny/dependabot/npm\_and\_yarn/ts-jest-29.4.6 * [`5204d85`](dorny/test-reporter@5204d85) Bump ts-jest from 29.4.5 to 29.4.6 * [`6658c27`](dorny/test-reporter@6658c27) Merge pull request [#727](https://github.com/dorny/test-reporter/issues/727) from dorny/feature/fix\_vulnerabilities * [`9b46772`](dorny/test-reporter@9b46772) Use `npm audit fix` to update sub dependencies * [`b3a9df8`](dorny/test-reporter@b3a9df8) Merge pull request [#629](https://github.com/dorny/test-reporter/issues/629) from dorny/feature/601\_eslint\_v9 * [`deb1d02`](dorny/test-reporter@deb1d02) Rebuild the `dist/index.js` file * [`69312b9`](dorny/test-reporter@69312b9) Update changelog * [`eed2d2d`](dorny/test-reporter@eed2d2d) Modernize ESLint configuration * Additional commits viewable in [compare view](dorny/test-reporter@b082adf...3d76b34) Updates `actions/setup-node` from 6.2.0 to 6.3.0 Release notes *Sourced from [actions/setup-node's releases](https://github.com/actions/setup-node/releases).* > v6.3.0 > ------ > > What's Changed > -------------- > > ### Enhancements: > > * Support parsing `devEngines` field by [`@susnux`](https://github.com/susnux) in [actions/setup-node#1283](https://github.com/actions/setup-node/pull/1283) > > > When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node. > > ### Dependency updates: > > * Fix npm audit issues by [`@gowridurgad`](https://github.com/gowridurgad) in [actions/setup-node#1491](https://github.com/actions/setup-node/pull/1491) > * Replace uuid with crypto.randomUUID() by [`@trivikr`](https://github.com/trivikr) in [actions/setup-node#1378](https://github.com/actions/setup-node/pull/1378) > * Upgrade minimatch from 3.1.2 to 3.1.5 by [`@dependabot`](https://github.com/dependabot) in [actions/setup-node#1498](https://github.com/actions/setup-node/pull/1498) > > ### Bug fixes: > > * Remove hardcoded bearer for mirror-url [`@marco-ippolito`](https://github.com/marco-ippolito) in [actions/setup-node#1467](https://github.com/actions/setup-node/pull/1467) > * Scope test lockfiles by package manager and update cache tests by [`@gowridurgad`](https://github.com/gowridurgad) in [actions/setup-node#1495](https://github.com/actions/setup-node/pull/1495) > > New Contributors > ---------------- > > * [`@susnux`](https://github.com/susnux) made their first contribution in [actions/setup-node#1283](https://github.com/actions/setup-node/pull/1283) > > **Full Changelog**: <actions/setup-node@v6...v6.3.0> Commits * [`53b8394`](actions/setup-node@53b8394) Bump minimatch from 3.1.2 to 3.1.5 ([#1498](https://github.com/actions/setup-node/issues/1498)) * [`54045ab`](actions/setup-node@54045ab) Scope test lockfiles by package manager and update cache tests ([#1495](https://github.com/actions/setup-node/issues/1495)) * [`c882bff`](actions/setup-node@c882bff) Replace uuid with crypto.randomUUID() ([#1378](https://github.com/actions/setup-node/issues/1378)) * [`774c1d6`](actions/setup-node@774c1d6) feat(node-version-file): support parsing `devEngines` field ([#1283](https://github.com/actions/setup-node/issues/1283)) * [`efcb663`](actions/setup-node@efcb663) fix: remove hardcoded bearer ([#1467](https://github.com/actions/setup-node/issues/1467)) * [`d02c89d`](actions/setup-node@d02c89d) Fix npm audit issues ([#1491](https://github.com/actions/setup-node/issues/1491)) * See full diff in [compare view](actions/setup-node@6044e13...53b8394) Updates `actions/dependency-review-action` from 4.8.3 to 4.9.0 Release notes *Sourced from [actions/dependency-review-action's releases](https://github.com/actions/dependency-review-action/releases).* > Dependency Review Action 4.9.0 > ------------------------------ > > This feature release contains a couple of notable changes: > > * There is a new configuration option `show_patched_versions` which will add a column to the output, showing the fix version of each vulnerable dependency. Thanks [`@felickz`](https://github.com/felickz)! > * Runs which do not display OpenSSF scorecards no longer fetch scorecard information; previously it was fetched regardless of whether or not it was displayed, causing unneccessary slowness. Great catch [`@jantiebot`](https://github.com/jantiebot)! > * There are a couple of fixes to purl parsing which should improve match accuracy for `allow-package-dependency` lists, including case (in)sensitivity and url-encoded namespaces Thanks [`@juxtin`](https://github.com/juxtin)! > > What's Changed > -------------- > > * Compare normalized purls to account for encoding quirks by [`@juxtin`](https://github.com/juxtin) in [actions/dependency-review-action#1056](https://github.com/actions/dependency-review-action/pull/1056) > * Make purl comparisons case insensitive by [`@juxtin`](https://github.com/juxtin) in [actions/dependency-review-action#1057](https://github.com/actions/dependency-review-action/pull/1057) > * Feat: Add `Patched Version` to `Vulnerabilities` summary by [`@felickz`](https://github.com/felickz) in [actions/dependency-review-action#1045](https://github.com/actions/dependency-review-action/pull/1045) > * fix: only get scorecard levels if user wants to see the OpenSSF scorecard by [`@jantiebot`](https://github.com/jantiebot) in [actions/dependency-review-action#1060](https://github.com/actions/dependency-review-action/pull/1060) > * Bump actions/stale from 10.1.0 to 10.2.0 by [`@dependabot`](https://github.com/dependabot)[bot] in [actions/dependency-review-action#1058](https://github.com/actions/dependency-review-action/pull/1058) > * Bump actions/checkout from 4 to 6 by [`@dependabot`](https://github.com/dependabot)[bot] in [actions/dependency-review-action#1021](https://github.com/actions/dependency-review-action/pull/1021) > * Updates for release 4.9.0 by [`@ahpook`](https://github.com/ahpook) in [actions/dependency-review-action#1064](https://github.com/actions/dependency-review-action/pull/1064) > > New Contributors > ---------------- > > * [`@jantiebot`](https://github.com/jantiebot) made their first contribution in [actions/dependency-review-action#1060](https://github.com/actions/dependency-review-action/pull/1060) > > **Full Changelog**: <actions/dependency-review-action@v4.8.3...v4.9.0> Commits * [`2031cfc`](actions/dependency-review-action@2031cfc) Merge pull request [#1064](https://github.com/actions/dependency-review-action/issues/1064) from actions/ahpook/release-4.9.0 * [`d02fa39`](actions/dependency-review-action@d02fa39) Updates for release 4.9.0 * [`4038a34`](actions/dependency-review-action@4038a34) Merge pull request [#1021](https://github.com/actions/dependency-review-action/issues/1021) from actions/dependabot/github\_actions/actions/check... * [`a632b83`](actions/dependency-review-action@a632b83) Merge pull request [#1058](https://github.com/actions/dependency-review-action/issues/1058) from actions/dependabot/github\_actions/actions/stale... * [`57a3d46`](actions/dependency-review-action@57a3d46) Merge pull request [#1060](https://github.com/actions/dependency-review-action/issues/1060) from jantiebot/main * [`5ecdc4b`](actions/dependency-review-action@5ecdc4b) Merge pull request [#1045](https://github.com/actions/dependency-review-action/issues/1045) from forks-felickz/main * [`e8c2f9a`](actions/dependency-review-action@e8c2f9a) fix: remove inferrable type annotation to pass eslint * [`0e129e1`](actions/dependency-review-action@0e129e1) Prettier - Refactor summary table rendering for improved readability * [`aa60746`](actions/dependency-review-action@aa60746) Add 'show-patched-versions' option to configuration and update summary handling * [`e404798`](actions/dependency-review-action@e404798) Merge upstream actions/dependency-review-action main * Additional commits viewable in [compare view](actions/dependency-review-action@05fe457...2031cfc) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Adds
Patched Versionto the Vulnerabilities to provide developers with some actionable feedback as to what can be done to resolve blocking PRs (implements #1041)Handle scenarios where the same package has multiple vulnerable version ranges with different patched versions (e.g., GHSA-gwq6-fmvp-qp68 with .NET packages).
Added detailed debug logging to help troubleshoot patch version issues: Add comprehensive debug logging for patch version lookup
To test: