Skip to content

Commit b0079d2

Browse files
Update actions/cache action to v5
1 parent fd161fb commit b0079d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-samples-and-snippets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: microsoft/setup-msbuild@v2
2222
- name: Restore NuGet Cache
2323
id: nuget-cache-restore
24-
uses: actions/cache/restore@v4
24+
uses: actions/cache/restore@v5
2525
with:
2626
path: ~/.nuget/packages
2727
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -32,7 +32,7 @@ jobs:
3232
- name: Save NuGet Cache
3333
id: nuget-cache-save
3434
if: always() && steps.nuget-cache-restore.outputs.cache-hit != 'true'
35-
uses: actions/cache/save@v4
35+
uses: actions/cache/save@v5
3636
with:
3737
path: ~/.nuget/packages
3838
key: ${{ steps.nuget-cache-restore.outputs.cache-primary-key }}

.github/workflows/validate-pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
curl --connect-timeout 5 --max-time 15 --silent --show-error https://s3.amazonaws.com/particular.downloads/Particular.DocsTool/version.json >> docstool-version.json
2121
- name: Cache docstool
2222
id: cache-docstool
23-
uses: actions/cache@v4.2.4
23+
uses: actions/cache@v5.0.1
2424
with:
2525
path: |
2626
~/.dotnet/tools/docstool

.github/workflows/verify-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
curl --connect-timeout 5 --max-time 15 --silent --show-error https://f.feedz.io/particular-software/packages/nuget/v3/packages/particular.docstool/index.json >> docstool-versions.json
2424
- name: Cache docstool
2525
id: cache-docstool
26-
uses: actions/cache@v4.2.4
26+
uses: actions/cache@v5.0.1
2727
with:
2828
path: |
2929
~/.dotnet/tools/docstool

0 commit comments

Comments
 (0)