Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading