Skip to content

Commit e065573

Browse files
authored
Merge pull request #162 from dmikusa/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents 4222633 + 594931f commit e065573

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v4
27-
- uses: actions/cache@v4
27+
- uses: actions/cache@v5
2828
with:
2929
path: ~/.cargo/registry
3030
key: '${{ runner.os }}-cargo-registry-${{ hashFiles(''**/Cargo.lock'') }}'
31-
- uses: actions/cache@v4
31+
- uses: actions/cache@v5
3232
with:
3333
path: ~/.cargo/git
3434
key: '${{ runner.os }}-cargo-index-${{ hashFiles(''**/Cargo.lock'') }}'
35-
- uses: actions/cache@v4
35+
- uses: actions/cache@v5
3636
with:
3737
path: target
3838
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -54,15 +54,15 @@ jobs:
5454
- os: windows-latest
5555
steps:
5656
- uses: actions/checkout@v4
57-
- uses: actions/cache@v4
57+
- uses: actions/cache@v5
5858
with:
5959
path: ~/.cargo/registry
6060
key: '${{ runner.os }}-cargo-registry-${{ hashFiles(''**/Cargo.lock'') }}'
61-
- uses: actions/cache@v4
61+
- uses: actions/cache@v5
6262
with:
6363
path: ~/.cargo/git
6464
key: '${{ runner.os }}-cargo-index-${{ hashFiles(''**/Cargo.lock'') }}'
65-
- uses: actions/cache@v4
65+
- uses: actions/cache@v5
6666
with:
6767
path: target
6868
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)