Skip to content

Commit 9959944

Browse files
authored
Merge pull request #15 from simonrupf/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents ddebed1 + ef43f8b commit 9959944

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
rustup default ${RUST_VERSION}
2121
rustup component add rustfmt clippy
2222
- name: Cache cargo registry
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.cargo/registry
2626
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2727
- name: Cache cargo build
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: target
3131
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
rustup toolchain install ${RUST_VERSION} --profile minimal --no-self-update
5656
rustup default ${RUST_VERSION}
5757
rustup target add --toolchain ${RUST_VERSION} x86_64-unknown-linux-musl
58-
- uses: actions/cache@v4
58+
- uses: actions/cache@v5
5959
with:
6060
path: ~/.cargo/registry
6161
key: ${{ runner.os }}-cargo-rpm-registry-${{ hashFiles('**/Cargo.lock') }}
62-
- uses: actions/cache@v4
62+
- uses: actions/cache@v5
6363
with:
6464
path: target
6565
key: ${{ runner.os }}-cargo-rpm-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)