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 @@ -26,7 +26,7 @@ jobs:

# Cache pakietów NuGet (klucz po hashu plików .csproj) — szybszy restore.
- name: Cache NuGet
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.nuget/packages
Comment on lines 28 to 31

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: High

The change bumps actions/cache from major version 4 to 6. According to the upstream release notes, v6.0.0 includes a migration to ESM and updates to core dependencies (@actions/cache, @actions/core, etc.). These internal changes may alter error‑handling behavior (e.g., handling of read‑only cache tokens). However, the public interface (inputs path, key, restore-keys) remains identical, and all CI checks (build‑and‑test, lint, CodeQL, security scans) passed successfully. The related‑context search found no other usages of actions/cache in the repository, so the impact is limited to these two workflow files. No breaking changes in workflow behavior are observed.

key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
dotnet-version: 8.0.x

- name: Cache NuGet
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
Expand Down
Loading