From f8af8cd162e61fbb4881471bbb6f4fe76265b47c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 May 2025 13:32:32 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .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..8a2be09 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@v4 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@v4 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..9768806 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@v4 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@v4 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@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}