Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
Comment on lines 22 to 25

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 | Confidence: Medium

The PR updates actions/setup-dotnet from v4 to v5 across all three workflow files (ci.yml, codeql.yml, release.yml). While the CI pipeline (build‑and‑test) succeeded and the related context confirms that no residual @v4 references remain, this is a major version bump with documented breaking changes:

  • Upgraded to Node.js 24 (requires runner version ≥2.327.1).
  • Removed support for older .NET versions (e.g., .NET 6 and below).
  • Changed cache behavior (bumped @actions/cache to 5.1.0 with new logging).
  • Updated install scripts and removed azureedge.net fallback logic.

The workflow sets dotnet-version: 8.0.x, which is still supported, and windows-latest runners are typically on a recent enough version. Nonetheless, the breaking changes could introduce subtle regressions (e.g., global.json roll‑forward validation now stricter, cache write denial logs).

Suggested action: Review the full changelog (linked in the PR description) and verify that the behavior aligns with the project’s expectations—especially any interaction with global.json or NuGet caching. Since the CI passed, the update is likely safe, but a manual check adds confidence for future builds.


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fetch-depth: 0 # pełna historia + tagi — do policzenia następnej wersji i listy zmian od poprzedniego wydania

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand Down
Loading