Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/create-vsix-feed/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
using: "composite"
steps:
- name: Cache PrivateGalleryCreator
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/PrivateGalleryCreator
key: ${{ runner.os }}-PrivateGalleryCreator-1.0.64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Cache nuget
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/.nuget/packages
key: ${{ runner.os }}-nuget-${{ github.sha }}
restore-keys: ${{ runner.os }}-nuget-

- name: Cache agent
id: cache-agent
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: src/Cody.VisualStudio/Agent
key: ${{ runner.os }}-agent-${{ hashFiles('agent/agent.version', 'agent/buildAgent.ps1', 'agent/runBuildAgent.ps1') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Cache nuget
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/.nuget/packages
key: ${{ runner.os }}-nuget-${{ github.sha }}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Cache agent
id: cache-agent
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: src/Cody.VisualStudio/Agent
key: ${{ runner.os }}-agent-${{ steps.cody-hash.outputs.digest }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Cache nuget
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/.nuget/packages
key: ${{ runner.os }}-nuget-${{ github.sha }}
restore-keys: ${{ runner.os }}-nuget-

- name: Cache agent (${{ steps.version.outputs.agent-version }})
id: cache-agent
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: src/Cody.VisualStudio/Agent
key: ${{ runner.os }}-agent-${{ hashFiles('agent/agent.version', 'agent/buildAgent.ps1', 'agent/runBuildAgent.ps1') }}
Expand Down
Loading