Skip to content
Open
Show file tree
Hide file tree
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/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.200'
dotnet-version: '10.0.201'
-
name: Run tests
run: dotnet test --framework net10.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.200'
dotnet-version: '10.0.201'
-
name: Checkout code
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.200
10.0.201
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Action required

1. pull-request.yml uses 10.0.201 📎 Requirement gap ⛯ Reliability

The pull-request workflow includes 10.0.201 in the dotnet-version matrix instead of the required
10.0.200. This violates the pinned SDK requirement and may cause policy drift across CI workflows.
Agent Prompt
## Issue description
`.github/workflows/pull-request.yml` uses `10.0.201` in the `dotnet-version` matrix, but compliance requires `10.0.200`.

## Issue Context
Compliance checklist item (PR Compliance ID: 1) standardizes CI workflows on `.NET SDK 10.0.200`.

## Fix Focus Areas
- .github/workflows/pull-request.yml[40-40]

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools

-
name: Login to Docker Hub
if: ${{ github.event.pull_request.head.repo.fork == false }}
Expand Down
Loading