[gh actions] Fix caching of ~/.cargo/bin

This commit is contained in:
bjorn3 2020-03-13 19:34:35 +01:00
parent 133b05b3a4
commit 2e5661dae6

View File

@ -16,6 +16,10 @@ jobs:
steps:
- 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/bin
- name: Cache cargo installed crates
uses: actions/cache@v1.1.2
with: