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') }}