Skip to content

Commit

Permalink
Merge pull request #429 from tktcorporation/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/actions/cache-4.0.2

⬆️ Bump actions/cache from 3.3.2 to 4.0.2
  • Loading branch information
tktcorporation committed May 16, 2024
2 parents 93d4fe3 + 0a827d0 commit b696cb8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ jobs:
components: clippy
# caching
- name: Cache cargo registry
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -75,17 +75,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -108,17 +108,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -149,17 +149,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

# Cache files between builds
- name: Setup | Cache Cargo
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit b696cb8

Please sign in to comment.