diff --git a/.github/workflows/linux_checks.yml b/.github/workflows/linux_checks.yml index 6e6a685da..c792b0ff3 100644 --- a/.github/workflows/linux_checks.yml +++ b/.github/workflows/linux_checks.yml @@ -16,27 +16,27 @@ jobs: uses: actions/cache@v1 with: path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo index uses: actions/cache@v1 with: path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo target uses: actions/cache@v1 with: path: ~/target - key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache pip wheels uses: actions/cache@v1 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-1 - name: Cache pyenv uses: actions/cache@v1 with: path: ${{ github.workspace }}/pyenv - key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}- + key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}-1 - name: Set up python uses: actions/setup-python@v1 with: diff --git a/.github/workflows/mac_checks.yml.off b/.github/workflows/mac_checks.yml.off index a50b918cd..02d285d9a 100644 --- a/.github/workflows/mac_checks.yml.off +++ b/.github/workflows/mac_checks.yml.off @@ -13,27 +13,27 @@ jobs: uses: actions/cache@v1 with: path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo index uses: actions/cache@v1 with: path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo target uses: actions/cache@v1 with: path: ~/target - key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache pip wheels uses: actions/cache@v1 with: path: ~/Library/Caches/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-1 - name: Cache pyenv uses: actions/cache@v1 with: path: ${{ github.workspace }}/pyenv - key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}- + key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}-1 - name: Set up python uses: actions/setup-python@v1 with: diff --git a/.github/workflows/windows_checks.yml b/.github/workflows/windows_checks.yml index a67d93bd8..6d03dd484 100644 --- a/.github/workflows/windows_checks.yml +++ b/.github/workflows/windows_checks.yml @@ -26,33 +26,33 @@ jobs: uses: actions/cache@v1 with: path: ${{ github.workspace }}\pyenv - key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}- + key: ${{ runner.os }}-pyenv-${{ hashFiles('**/Makefile') }}-${{ hashFiles('**/requirements.txt') }}-1 - name: Cache cargo registry uses: actions/cache@v1 with: path: C:\Rust\.cargo\registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo index uses: actions/cache@v1 with: path: C:\Rust\.cargo\git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache cargo target uses: actions/cache@v1 with: path: ${{ github.workspace }}\target - key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }} + key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}-1 - name: Cache pip wheels uses: actions/cache@v1 with: path: ~\AppData\Local\pip\Cache - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-1 - name: Cache pacman uses: actions/cache@v1 id: cache-pacman with: path: C:\Program Files\Git - key: ${{ runner.os }}-pacman-${{ hashFiles('**/windows_checks.yml') }} + key: ${{ runner.os }}-pacman-${{ hashFiles('**/windows_checks.yml') }}-1 - name: Set up pacman, pyaudio, rsync, rename if: steps.cache-pacman.outputs.cache-hit != 'true' shell: cmd