Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: dotnet tool install --global Microsoft.CST.DevSkim.CLI

- name: Run DevSkim Security Scan (Save output)
run: devskim analyze --source-code . --file-format text -E --ignore-rule-ids DS176209 --ignore-globs "**/api/**,**/CoverageReport/**"
run: devskim analyze --source-code . --file-format text -E --ignore-rule-ids DS176209 --ignore-globs "**/api/**,**/CoverageReport/**" --output-file devskim-results.txt
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description states that Microsoft.Bcl.AsyncInterfaces was updated from 10.0.2 to 10.0.3, but there are no changes to any dependency files in this PR. The codebase already shows version 10.0.3 in all relevant files (src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj and all example packages.config files). Either the dependency update was already applied in a previous commit, or the PR description should be updated to reflect only the DevSkim workflow fix.

Copilot uses AI. Check for mistakes.

- name: Show DevSkim Results in Summary
if: failure()
Expand Down