Unnamed repository; edit this file 'description' to name the repository.
build(deps): bump actions/cache from 2.1.7 to 3 (#1850)
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/compare/v2.1.7...v3)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
| -rw-r--r-- | .github/workflows/build.yml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be954774..69d88f83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,21 +23,21 @@ jobs: override: true - name: Cache cargo registry - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/registry key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-registry- - name: Cache cargo index - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/git key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-index- - name: Cache cargo target dir - uses: actions/[email protected] + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -63,21 +63,21 @@ jobs: override: true - name: Cache cargo registry - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/registry key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-registry- - name: Cache cargo index - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/git key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-index- - name: Cache cargo target dir - uses: actions/[email protected] + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -87,7 +87,7 @@ jobs: run: cp .github/workflows/languages.toml ./languages.toml - name: Cache test tree-sitter grammar - uses: actions/[email protected] + uses: actions/cache@v3 with: path: runtime/grammars key: ${{ runner.os }}-v2-tree-sitter-grammars-${{ hashFiles('languages.toml') }} @@ -120,21 +120,21 @@ jobs: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/registry key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-registry- - name: Cache cargo index - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/git key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-index- - name: Cache cargo target dir - uses: actions/[email protected] + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -167,21 +167,21 @@ jobs: override: true - name: Cache cargo registry - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/registry key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-registry- - name: Cache cargo index - uses: actions/[email protected] + uses: actions/cache@v3 with: path: ~/.cargo/git key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }} restore-keys: ${{ runner.os }}-v2-cargo-index- - name: Cache cargo target dir - uses: actions/[email protected] + uses: actions/cache@v3 with: path: target key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} |