diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c16696c52..ba21d4a86f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -277,7 +277,7 @@ jobs: dist - name: Cache Build id: cache-build - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ github.workspace }}/ key: ${{ github.sha }}-your-cache-key-bundled @@ -288,7 +288,7 @@ jobs: needs: ['bundle','tests_db','tests_file_system'] if: contains(github.ref, 'refs/tags/v') steps: - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: restore-build with: path: ${{ github.workspace }}/ diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b85738f672..0c63e3cbbd 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -21,7 +21,7 @@ jobs: with: dotnet-version: 6.0.x - name: Cache Nuget - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}