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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
# Action versions:
# - actions/checkout@v4
# - actions/setup-dotnet@v4
# - actions/cache@v4
# - actions/cache@v6
# - actions/upload-artifact@v4
# Triggers: push (main/develop), pull_request, workflow_call (called by docker-build-publish)
on:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
dotnet-version: '10.0.x'

- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:

# Restore previous coverage state for retroactive drop detection
- name: Restore coverage state
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: coverage-state.json
key: coverage-state-${{ github.ref }}-${{ github.sha }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
# Save coverage state for next run (only on push events to persist history)
- name: Save coverage state
if: github.event_name == 'push' && (success() || failure())
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
path: coverage-state.json
key: coverage-state-${{ github.ref }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Performance Tests
# Action versions:
# - actions/checkout@v4
# - actions/setup-dotnet@v4
# - actions/cache@v4
# - actions/cache@v6
# - actions/upload-artifact@v4
on:
# Scheduled: full load test suite weekly (Sunday 03:00 UTC)
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
dotnet-version: '10.0.x'

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