[gh actions] Really fix caching this time

This commit is contained in:
bjorn3 2020-03-14 18:17:13 +01:00
parent 5d516f9e11
commit fe0e2ae66d
1 changed files with 3 additions and 2 deletions

View File

@ -17,8 +17,9 @@ jobs:
- uses: actions/checkout@v2
# https://github.com/actions/cache/issues/133
- name: Fixup owner of ~/.cargo/bin
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo
- name: Fixup owner of ~/.cargo/
# Don't remove the trailing /. It is necessary to follow the symlink.
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
- name: Cache cargo installed crates
uses: actions/cache@v1.1.2