Skip to content

Commit 5fda9f5

Browse files
authored
Merge pull request #16 from sir-gon/renovate/actions-checkout-5.x
Update actions/checkout action to v5
2 parents 7066417 + e25428d commit 5fda9f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/rust-clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
actions: read
3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Install Rust toolchain
3838
# @v1

.github/workflows/rust-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
CARGO_TERM_COLOR: always
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Install Rust
2121
run: rustup update stable
2222
- name: Install cargo-llvm-cov

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Build
2727
run: cargo build --verbose
2828
- name: Run tests

0 commit comments

Comments
 (0)