Skip to content

Commit

Permalink
review: remove .github/workflows/rust.yml from cache keys.
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora committed Oct 27, 2024
1 parent c7b904b commit d3ced33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
~/.cargo/registry
~/.rustup
**/target
key: msrv-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: msrv-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
~/.cargo/registry
~/.rustup
**/target
key: stable-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: stable-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
~/.cargo/registry
~/.rustup
**/target
key: nightly-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: nightly-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
~/.cargo/bin
~/.cargo/registry
~/.rustup
key: outdated-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: outdated-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
~/.cargo/bin
~/.cargo/registry
~/.rustup
key: audit-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: audit-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
~/.cargo/registry
~/.rustup
**/target
key: example-${{ matrix.example }}-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: example-${{ matrix.example }}-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down Expand Up @@ -467,7 +467,7 @@ jobs:
~/.cargo/registry
~/.rustup
**/target
key: reactor-${{ matrix.example }}-${{ hashFiles('.github/workflows/rust.yml', 'Cargo.toml') }}
key: reactor-${{ matrix.example }}-${{ hashFiles('Cargo.toml') }}

- name: Install dependencies
if: ${{ env.ACT }}
Expand Down

0 comments on commit d3ced33

Please sign in to comment.