Skip to content

Commit 9a1a539

Browse files
Merge pull request #15 from nxthdr/renovate/actions-cache-5.x
chore(deps): update actions/cache action to v5
2 parents 7af3602 + 0532400 commit 9a1a539

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
uses: dtolnay/rust-toolchain@stable
2222

2323
- name: Cache cargo registry
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.cargo/registry
2727
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2828

2929
- name: Cache cargo index
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: ~/.cargo/git
3333
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3434

3535
- name: Cache cargo build
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: target
3939
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -97,25 +97,25 @@ jobs:
9797
uses: dtolnay/rust-toolchain@stable
9898

9999
- name: Cache cargo registry
100-
uses: actions/cache@v4
100+
uses: actions/cache@v5
101101
with:
102102
path: ~/.cargo/registry
103103
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
104104

105105
- name: Cache cargo index
106-
uses: actions/cache@v4
106+
uses: actions/cache@v5
107107
with:
108108
path: ~/.cargo/git
109109
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
110110

111111
- name: Cache cargo build
112-
uses: actions/cache@v4
112+
uses: actions/cache@v5
113113
with:
114114
path: target
115115
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
116116

117117
- name: Cache sFlow specs
118-
uses: actions/cache@v4
118+
uses: actions/cache@v5
119119
with:
120120
path: tests/validation/cache
121121
key: ${{ runner.os }}-sflow-specs-${{ hashFiles('tests/validation/specs_validation.rs') }}

0 commit comments

Comments
 (0)