From e65f98c5d7a18b5e64468b0f6168999ab87282a0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 02:52:39 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/ci-dev.yaml | 4 ++-- .github/workflows/ci-prod.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-dev.yaml b/.github/workflows/ci-dev.yaml index d28d965..aef7f45 100644 --- a/.github/workflows/ci-dev.yaml +++ b/.github/workflows/ci-dev.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 - name: Cache .NET dependencies - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: '~/.nuget/packages' key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} @@ -48,7 +48,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 - name: Cache .NET dependencies - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: '~/.nuget/packages' key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} diff --git a/.github/workflows/ci-prod.yaml b/.github/workflows/ci-prod.yaml index 65f3f92..1c08c89 100644 --- a/.github/workflows/ci-prod.yaml +++ b/.github/workflows/ci-prod.yaml @@ -12,7 +12,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 - name: Cache .NET dependencies - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: '~/.nuget/packages' key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} @@ -45,7 +45,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 - name: Cache .NET dependencies - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: '~/.nuget/packages' key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} @@ -73,7 +73,7 @@ jobs: with: fetch-depth: 0 - uses: actions/setup-node@v3 - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}