[Repo Assist] eng: fix OpenTelemetry.Api GHSA-g94r-2vxg-569j by pinning >= 1.15.1 and updating GitHubActionsTestLogger to 3.0.3#1762
Open
github-actions[bot] wants to merge 3 commits intomainfrom
Conversation
…ating GitHubActionsTestLogger to 3.0.3 - Pin GitHubActionsTestLogger to 3.0.3 (was floating, resolved to 3.0.1) - Add explicit OpenTelemetry.Api >= 1.15.1 lower bound to Test group - paket.lock now resolves OpenTelemetry.Api to 1.15.3 (fixes GHSA-g94r-2vxg-569j) - 37 tests pass; dotnet restore no longer errors with NU1902 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Apr 27, 2026
Open
…er-2026-04-26-dedcc9a97ae187f2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 This is an automated pull request from Repo Assist, an AI assistant for this repository.
Fixes the pre-existing moderate vulnerability GHSA-g94r-2vxg-569j in
OpenTelemetry.Apithat was blockingdotnet restoreanddotnet buildin development environments (NU1902 — warning treated as error).Root Cause
The vulnerability chain was:
OpenTelemetry.Api 1.15.0was the vulnerable version. 1.15.1+ is clean.Changes
paket.dependencies(Test group):GitHubActionsTestLoggerfrom unpinned (resolved to 3.0.1) to3.0.3— the newer version also has no direct OpenTelemetry dependencynuget OpenTelemetry.Api >= 1.15.1lower bound to force paket's resolver to pick a patched versionpaket.lock:GitHubActionsTestLoggerbumped from3.0.1→3.0.3OpenTelemetry.Apibumped from1.15.0→1.15.3(latest patch)No source code changes.
Test Status
dotnet restoreon test projects — succeeds with no NU1902 errorsdotnet test tests/FSharp.Data.Core.Tests/ --filter "StringExtensions|HttpEncodings|ParseLink"— 37 passed, 0 failed