From 76ed1853a48ced5097fa96fba9b1872770312de5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 11:00:45 +0000 Subject: [PATCH] Update actions/cache action to v5 --- .github/actions/create-vsix-feed/action.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/nightly.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/create-vsix-feed/action.yml b/.github/actions/create-vsix-feed/action.yml index d690e6e4..dd95b2fc 100644 --- a/.github/actions/create-vsix-feed/action.yml +++ b/.github/actions/create-vsix-feed/action.yml @@ -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 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e61ce626..d9e6c6d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,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 }} @@ -36,7 +36,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-${{ hashFiles('agent/agent.version', 'agent/buildAgent.ps1', 'agent/runBuildAgent.ps1') }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 42c9dfd7..79b282fb 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b0a7f936..f177ac2f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -48,7 +48,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 }} @@ -56,7 +56,7 @@ jobs: - 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') }}