Skip to content

Commit 76ed185

Browse files
Update actions/cache action to v5
1 parent 4db9c71 commit 76ed185

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/actions/create-vsix-feed/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
using: "composite"
2121
steps:
2222
- name: Cache PrivateGalleryCreator
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ${{ github.workspace }}/PrivateGalleryCreator
2626
key: ${{ runner.os }}-PrivateGalleryCreator-1.0.64

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
uses: microsoft/setup-msbuild@v2
2929

3030
- name: Cache nuget
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: ${{ github.workspace }}/.nuget/packages
3434
key: ${{ runner.os }}-nuget-${{ github.sha }}
3535
restore-keys: ${{ runner.os }}-nuget-
3636

3737
- name: Cache agent
3838
id: cache-agent
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: src/Cody.VisualStudio/Agent
4242
key: ${{ runner.os }}-agent-${{ hashFiles('agent/agent.version', 'agent/buildAgent.ps1', 'agent/runBuildAgent.ps1') }}

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: microsoft/setup-msbuild@v2
2525

2626
- name: Cache nuget
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: ${{ github.workspace }}/.nuget/packages
3030
key: ${{ runner.os }}-nuget-${{ github.sha }}
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Cache agent
4949
id: cache-agent
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: src/Cody.VisualStudio/Agent
5353
key: ${{ runner.os }}-agent-${{ steps.cody-hash.outputs.digest }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ jobs:
4848
uses: microsoft/setup-msbuild@v2
4949

5050
- name: Cache nuget
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ${{ github.workspace }}/.nuget/packages
5454
key: ${{ runner.os }}-nuget-${{ github.sha }}
5555
restore-keys: ${{ runner.os }}-nuget-
5656

5757
- name: Cache agent (${{ steps.version.outputs.agent-version }})
5858
id: cache-agent
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
path: src/Cody.VisualStudio/Agent
6262
key: ${{ runner.os }}-agent-${{ hashFiles('agent/agent.version', 'agent/buildAgent.ps1', 'agent/runBuildAgent.ps1') }}

0 commit comments

Comments
 (0)