Skip to content
Open
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_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v6

- name: Restore gradle cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
~/.gradle/caches
Expand All @@ -46,7 +46,7 @@ jobs:
run: ./gradlew assemble${{ matrix.variant }}${{ matrix.build_type }} ${{ matrix.extra_build_command_options }} --stacktrace

- name: Save gradle cache
uses: actions/cache/save@v5
uses: actions/cache/save@v6
# Only save cache on dev
if: github.ref_name == 'dev'
with:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Restore Gradle cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
~/.gradle/caches
Expand All @@ -95,7 +95,7 @@ jobs:
run: ./gradlew testPlayDebugUnitTest --stacktrace

- name: Save gradle cache
uses: actions/cache/save@v5
uses: actions/cache/save@v6
# Only save cache on dev
if: github.ref_name == 'dev'
with:
Expand Down
Loading