We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 884f0e6 commit dbd3b8aCopy full SHA for dbd3b8a
.github/workflows/ci.yml
@@ -85,7 +85,7 @@ jobs:
85
fetch-depth: '0'
86
- name: Restore NuGet Cache
87
id: restore-nuget-cache
88
- uses: actions/cache@v4
+ uses: actions/cache/restore@v4
89
with:
90
path: '${{ github.workspace }}/.nuget/packages'
91
key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/dotnet-tools.json') }}"
@@ -116,7 +116,7 @@ jobs:
116
if: always() && steps.restore-nuget-cache.outputs.cache-hit != 'true'
117
uses: actions/cache/save@v4
118
119
- key: ${{ steps.restore-nuget-cache.outputs.cache-primary-key }}
+ key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/dotnet-tools.json') }}"
120
121
- name: ⚙ Build
122
id: build
0 commit comments