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
22 changes: 11 additions & 11 deletions .github/workflows/onPullRequest-multiPlatformTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

# Cache .NET packages
- name: Cache .NET packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ matrix.os }}-${{ matrix.arch }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/Directory.Packages.props') }}
Expand All @@ -128,7 +128,7 @@ jobs:

# Cache CMake build
- name: Cache CMake build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
src/InfiniFrame.Native/build
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:

# Cache .NET packages
- name: Cache .NET packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~\.nuget\packages
key: ${{ matrix.os }}-${{ matrix.arch }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/Directory.Packages.props') }}
Expand All @@ -374,7 +374,7 @@ jobs:

# Cache CMake build
- name: Cache CMake build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
src\InfiniFrame.Native\build
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:

# Cache .NET packages
- name: Cache .NET packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~\.nuget\packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/Directory.Packages.props') }}
Expand All @@ -504,7 +504,7 @@ jobs:

# Cache CMake build
- name: Cache CMake build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
src\InfiniFrame.Native\build
Expand All @@ -516,7 +516,7 @@ jobs:
# Cache WebView2 installer
- name: Cache WebView2 installer
id: cache-webview2
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.TEMP }}\MicrosoftEdgeWebview2Setup.exe
key: webview2-installer-${{ runner.os }}
Expand All @@ -540,7 +540,7 @@ jobs:

# Cache npm global packages
- name: Cache npm global packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~\AppData\Roaming\npm
key: ${{ runner.os }}-npm-global-${{ hashFiles('**/package*.json') }}
Expand Down Expand Up @@ -573,7 +573,7 @@ jobs:

- name: Cache Playwright browsers
id: cache-playwright
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~\AppData\Local\ms-playwright
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
Expand Down Expand Up @@ -700,7 +700,7 @@ jobs:

# Cache .NET packages
- name: Cache .NET packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ matrix.os }}-${{ matrix.arch }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/Directory.Packages.props') }}
Expand All @@ -709,7 +709,7 @@ jobs:

# Cache CMake build
- name: Cache CMake build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
src/InfiniFrame.Native/build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/onRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:

# Cache NuGet packages
- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ startsWith(matrix.os, 'windows') && '~\.nuget\packages' || '~/.nuget/packages' }}
key: ${{ matrix.os }}-${{ matrix.arch }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/Directory.Packages.props') }}
Expand All @@ -157,7 +157,7 @@ jobs:

# Cache CMake build
- name: Cache CMake build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
src/InfiniFrame.Native/build
Expand All @@ -183,7 +183,7 @@ jobs:
# Cache Homebrew packages (macOS only)
- name: Cache Homebrew packages
if: startsWith(matrix.os, 'macos')
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/Library/Caches/Homebrew
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:

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