Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #12 from helix-editor/dependabot/github_actions/actions/cache-2.1.6
Bump actions/cache from 1 to 2.1.6
| -rw-r--r-- | .github/workflows/build.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98f85ba5..1921a457 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,19 +25,19 @@ jobs: override: true - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/[email protected] with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -64,19 +64,19 @@ jobs: override: true - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/[email protected] with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -104,19 +104,19 @@ jobs: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/[email protected] with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/[email protected] with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} |