Skip to content

Commit d3f16ca

Browse files
Update actions/cache action to v6
1 parent 8fe7cc9 commit d3f16ca

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
global-json-file: global.json
2020
- name: Restore NuGet Cache
2121
id: nuget-cache-restore
22-
uses: actions/cache/restore@v5
22+
uses: actions/cache/restore@v6
2323
with:
2424
path: ~/.nuget/packages
2525
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Save NuGet Cache
3131
id: nuget-cache-save
3232
if: always() && steps.nuget-cache-restore.outputs.cache-hit != 'true'
33-
uses: actions/cache/save@v5
33+
uses: actions/cache/save@v6
3434
with:
3535
path: ~/.nuget/packages
3636
key: ${{ steps.nuget-cache-restore.outputs.cache-primary-key }}

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
- name: Cache docstool
3636
id: cache-docstool
37-
uses: actions/cache@v5.0.5
37+
uses: actions/cache@v6.1.0
3838
with:
3939
path: |
4040
~/.dotnet/tools/docstool

.github/workflows/publish-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
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
3030
- name: Cache docstool
3131
id: cache-docstool
32-
uses: actions/cache@v5.0.5
32+
uses: actions/cache@v6.1.0
3333
with:
3434
path: |
3535
~/.dotnet/tools/docstool

.github/workflows/validate-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "DOCSTOOL_VERSION=$(curl --connect-timeout 5 --max-time 15 --silent --show-error https://s3.amazonaws.com/particular.downloads/Particular.DocsTool/version.json)" >> $GITHUB_ENV
2929
- name: Cache docstool
3030
id: cache-docstool
31-
uses: actions/cache@v5.0.5
31+
uses: actions/cache@v6.1.0
3232
with:
3333
path: |
3434
~/.dotnet/tools/docstool

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "DOCSTOOL_VERSION=$(curl --connect-timeout 5 --max-time 15 --silent --show-error https://s3.amazonaws.com/particular.downloads/Particular.DocsTool/version.json)" >> $GITHUB_ENV
2424
- name: Cache docstool
2525
id: cache-docstool
26-
uses: actions/cache@v5.0.5
26+
uses: actions/cache@v6.1.0
2727
with:
2828
path: |
2929
~/.dotnet/tools/docstool

0 commit comments

Comments
 (0)