diff --git a/.github/workflows/build-quick.yml b/.github/workflows/build-quick.yml index fc333dc66..c8a1300c4 100644 --- a/.github/workflows/build-quick.yml +++ b/.github/workflows/build-quick.yml @@ -158,7 +158,7 @@ jobs: - name: Restore Rust Cache (Windows) id: rust-cache-windows - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 if: contains(matrix.os, 'windows') with: path: | @@ -176,7 +176,7 @@ jobs: - name: Restore Rust Cache (Unix) id: rust-cache-unix - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 if: contains(matrix.os, 'windows') == false && contains(runner.environment, 'self-hosted') == false with: path: | @@ -308,7 +308,7 @@ jobs: path: video.webm - name: Save Rust Cache (Windows) - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: contains(matrix.os, 'windows') && github.ref == 'refs/heads/main' with: path: | @@ -322,7 +322,7 @@ jobs: key: ${{ steps.rust-cache-windows.outputs.cache-primary-key }} - name: Save Rust Cache (Unix) - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: contains(matrix.os, 'windows') == false && github.ref == 'refs/heads/main' with: path: | diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 9fa742044..4d784b46b 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -83,7 +83,7 @@ jobs: - name: Restore Rust Cache if: contains(runner.environment, 'self-hosted') == false id: rust-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cargo/registry @@ -209,7 +209,7 @@ jobs: ./gradlew rsdroid-testing:publishAllPublicationsToMavenCentral -Dorg.gradle.project.macCC=$ANKIDROID_MACOS_CC -DtestBuildType=debug -Dorg.gradle.daemon=false -Dorg.gradle.console=plain - name: Save Rust Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: github.ref == 'refs/heads/main' with: path: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7fe72f526..091fe40af 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -148,7 +148,7 @@ jobs: - name: Restore Rust Cache (Unix) if: matrix.build-mode == 'manual' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cargo/registry