Skip to content

Commit a711166

Browse files
authored
disable caching on macOS (apache#2816)
1 parent bc05ef8 commit a711166

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/java-test/action.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ runs:
5050
cargo build --release
5151
5252
- name: Cache Maven dependencies
53+
# TODO: remove next line after working again
54+
# temporarily work around https://github.com/actions/runner-images/issues/13341
55+
# by disabling caching for macOS
56+
if: ${{ runner.os != 'macOS' }}
5357
uses: actions/cache@v4
5458
with:
5559
path: |

0 commit comments

Comments
 (0)