Skip to content

Commit b8aab8e

Browse files
chore(deps): bump actions/cache from 4 to 5 (#15)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ba8cfa8 commit b8aab8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: |
1818
rustup component add rustfmt clippy
1919
- name: Cache cargo registry
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.cargo/registry
@@ -26,7 +26,7 @@ jobs:
2626
restore-keys: |
2727
${{ runner.os }}-cargo-registry-
2828
- name: Cache cargo build
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: target
3232
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
toolchain: 1.86.0
1919
components: rustfmt, clippy
2020
- name: Cache cargo registry
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
path: |
2424
~/.cargo/registry
@@ -27,7 +27,7 @@ jobs:
2727
restore-keys: |
2828
${{ runner.os }}-cargo-registry-
2929
- name: Cache cargo build
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: target
3333
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)