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