diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5534af5..68eeaaa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -84,7 +84,7 @@ jobs: - name: Download main branch integration benchmark results id: cache-integration-main if: github.event_name == 'pull_request' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: main-integration-benchmark-results.txt key: main-integration-benchmark-results-dummy @@ -120,7 +120,7 @@ jobs: - name: Save main branch integration benchmark results if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: main-integration-benchmark-results.txt key: main-integration-benchmark-results-${{ github.sha }} @@ -173,7 +173,7 @@ jobs: - name: Download main branch benchmark results id: cache-main if: github.event_name == 'pull_request' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: main-benchmark-results.txt key: benchmark-main-${{ runner.os }}-dummy @@ -217,7 +217,7 @@ jobs: - name: Save main branch benchmark results if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: main-benchmark-results.txt key: benchmark-main-${{ runner.os }}-${{ github.sha }}